position:absolute
hi everbody,
when I set the style of any element on a page with "position:absolute" I expect it to be placed on top of
every other item on the page but in the html below...
<body>
<div style="position:absolute" >
xx<br>xxx<br>xxx
</div> <br>
<select>
<option >
aaaaaaaaaaaaaaaaa
</option>
</select>
</body>
the div will go under the select box
why?
what should I do to avoid it?
help please
|