Hey gang, I'm attempting to a position a bunch of disjointed css span text rollovers using absolute positioning. They work perfectly in Safari. In Firefox however, some of the spans show up in their proper positions while others are off by a pixel or two. Any ideas about what's causing this inconsistency? Are there special considerations for absolute positioning of <span> ? Cheers
Make sure that is has both top and left positions or bottom and right are set. <html> <body> <div class="container"> <span>floating element</span> </div> </body> </html> HTML: span { position:absolute; top:0px; left:0px; } Code (markup): And also place a position:relative to the parent element or body tag to make it consistent. body, div.container { position:relative; } Code (markup):