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
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