I'm not really experienced in CSS and I have no tools that are best used in designing webpages such as Microsoft expression.
My problem is simple: I want my page to look as symmetrical as possible so I want my select options to be of same width. I've searched and the best solution is to use width="" option on CSS. So how do I go about this?
I have this example:
<tr>
<td>
<label for="meal">Meal:</label>
</td>
<td>
<select name="meal">
<option selected="selected" value="0">Any</option>
<option value="Breakfast">Breakfast</option>
<option value="Brunch">Brunch</option>
<option value="Lunch">Lunch</option>
<option value="Snack">Snack</option>
<option value="Dinner">Dinner</option>
</select>
</td>
<td>
<label for="cooking">Cooking:</label>
</td>
<td>
<select name="cooking">
<option selected="selected" value="0">Any</option>
<option value="Baked">Baked</option>
<option value="BBQ">Barbecque</option>
<option value="Boiled">Boiled</option>
<option value="Dfried">Deep Fried</option>
<option value="Grilled">Grilled</option>
<option value="Steamed">Steamed</option>
</select>
</td>
</tr>
If you want to set the same width on all select
elements in a document, you can write e.g.
<style>
select { width: 5.5em }
</style>
in the head
part. If you wish to do that for some select
elements only, you need to replace the selector select
by something more restrictive, e.g. select.foo
to restrict the effect to those select
elements that have the class=foo
attribute.
This is tricky because you need a width that is sufficient for all options, and you probably want to get as close to the maximal width as possible. The widths of options depend on their text and on the font. (Using the px
makes things even worse. Then things would depend on font size, too.)
Consider whether it is necessary to set the widths the same. It is just an esthetic preference, not shared by all people, and it may in fact be bad for usability. A dropdown with short options should perhaps look different from another dropdown that has long options.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With