Forum Moderators: open
<table><tr><td bgcolor="blue">
<div id="form" style="position: relative;layer-background-color:#FF0000;clip:rect(0,80,30,0);">
<form>
<select>
<option>zero
<option>one
<option>two
<option>three
</select>
</form>
</div>
</td></tr></table>
Can you see the blue space under the select control?
I'm not sure what effect you're looking for here. The only way I got it to look uniform was like this:
<div id="form" style="position: relative;layer-background-color:blue;clip:rect(0,80,30,0);">
<form>
<table><tr><td bgcolor="#FF0000">
<select>
<option>zero
<option>one
<option>two
<option>three
</select>
</td></tr></table>
</form>
</div>
However, that did not show any blue in any browser. Are you trying for a red option field in a blue column or did you want a blue background in the option field.