Published in: CSS
URL: absolutely positioned element
absolutely positioned element
You are affected by an IE bug where an absolutely positioned element may disappear when they it is adjacent to a float. Take a look at this article: IE/Win: floats and disappearing absolutely positioned divs (http://www.brunildo.org/test/IE_raf3.html) As of IE7 it seems that this bug has only been partially fixed. To solve your problem, you may try to put in a dummy separator div: <div id="wrap"> <div id="testa"></div> <div id="lingue" class="piccolo" align="left"> <img src="img/england.gif" alt="english" align="bottom"/><a href="http://www.aroundtheworldinalotofdays.com"><span style="margin:0 5px;">english</span></a> <img src="img/italia.gif" alt="italiano" align="bottom"/><a href="index.php"><span style="margin:0 5px;">italiano</span></a> </div> <div></div> [...] </div>
You need to login to post a comment.
