I've been searching for the answer to this question everywhere, but I haven't found a solution yet.
The browsers I have been using for testing are: Firefox 3.6.8 Internet Explorer 6.029
I am trying to create a box and position it using the CSS properties position:absolute, top, and left:
#testBox {
top:10px;
left:480px;
width:220px;
padding:3px;
position:absolute;
font-size:14px;
text-align:center;
}
<div>
<div>
<span style="position:relative;">
<span id="testBox">
testtesttesttesttest<br />
</span>
</span>
</div>
In Internet Explorer, the "testBox" span appears higher than in Firefox. Is there anything I can do to resolve this issue? Thanks, Roy