Forum Moderators: open
every html tag has 'style' attribute.
you can use it for setting up the uniform width of all tags.
eg.
<input type=text style="width:100px">
<select style="width:100px">
another way is to use stylesheets
eg.
<style>
.input {width:100px;}
.select {width:100px;}
</style>
<input type=text>
<select></select>