Trying to control the width of multiple pulldown menus within a form. In a quick example below, all boxes would be a different length due to the text. I have tried adding in a and it seems to work ok, but still not exact and it only works in IE. As you can see with my example, each pulldown will produce a different length.
<form method="post" action="example.htm">
<select name="pulldown1">
<option value="test1.htm">Test1</option>
<option value="test1.htm">Testing2</option>
</select>
<select name="pulldown2">
<option value="test1.htm">Testingagain3</option>
<option value="test1.htm">Testingonceagain4</option>
</select>
</form>
<form method="post" action="example.htm">
<select name="pulldown1">
<option value="test1.htm">Test1</option>
<option value="test1.htm">Testing2</option>
</select>
<select name="pulldown2">
<option value="test1.htm">Testingagain3</option>
<option value="test1.htm">Testingonceagain4</option>
</select>
</form>