I want the font used to display the options of a SELECT to be the same size as the text in front of them and haven't been able to find anything that does this across browsers.
Using IE, I can set the size of the font by
<select style="font-size=32" ...>
but both Firefox and Safari appear to ignore the font-size.
More details:
The select is buried inside a parent form, something like this:
<form><font size="+5"><b>Pick Number
<form action="#" method="get">
<select style="font-size=32" name="PN" onChange=getN(value)>
<option value="1"> 1</option>
<option value="2"> 2</option>
</select>
</form>
</b></font></form>
Any suggestions for getting the options (1, 2) to be as big as the enlarged bold "Pick Number"?
Thanks,
Richly
Using IE, I can set the size of the font by
<select style="font-size=32" ...>
but both Firefox and Safari appear to ignore the font-size.
More details:
The select is buried inside a parent form, something like this:
<form><font size="+5"><b>Pick Number
<form action="#" method="get">
<select style="font-size=32" name="PN" onChange=getN(value)>
<option value="1"> 1</option>
<option value="2"> 2</option>
</select>
</form>
</b></font></form>
Any suggestions for getting the options (1, 2) to be as big as the enlarged bold "Pick Number"?
Thanks,
Richly