I have a <div>...</div> element that is absolutely positioned and I want it to sit on the top of the screen. So yes it does sit above text, images, input boxes, checkboxes, etc. But it sits _behind_ select boxes in IE! Here is some sample code:
The z-index property does nothing of use to help this out. Is there any other workaround?
Code:
<html>
<body>
Testing
<select name="test">
<option value="1">A</option>
<option value="2">B</option>
</select>
<div style="position:absolute;top:0px;left:0px;width:250px;height:30px;background-color:orange;">
Blah Blah Blah
</div>
</body>
</html>
The z-index property does nothing of use to help this out. Is there any other workaround?