Forum Moderators: open
I have a form with several select menus all with varying width and want to make each menu the same width in order to improve appearence.
Can this be accomplished using css? Can't find any info on this.
<head>
<style type="text/css">
.cell { width:100px;}
</style>
</head>
<select class=cell size="1" name="selected">
<option value="variable">Description</option>
</select>
Use the same class on all of your select statements. Adjust width as needed in the style code.