select on top of my div

M

mike

I keep having this problem with my selects appearing on top of my div.
Even if I change the z index of them they still are on top. I am using
IE 6.0

Here is some code:

<html>
<head></head>
<body>
<select style="position:absolute; z-index:9; left:200px; top:250px;">
<option value="1">one</option>
<option value="2">two</option>
<option value="3">three</option>
</select>
<div style="position:absolute; z-index:99; left:180px; top:245px;
border:2px solid blue;">
The select is pissing me off <br>because it is in front <br>of my div.
</div>
</body>
</html>

Anyway around this?

Mike
 
R

Rob Parsons

Hi Mike. I played with your code but no luck. All I can suggest is to use
the visibility attribute i/o z-order. Perhaps someone else will offer the
correct solution.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top