I've been trying to search for this in stackoverflow but I couldn't find the answer.
Browsers I am using for testing: Firefox 3.6.8 Internet Explorer 6.029
I am creating a box and positioning it via the position:absolute and top and left properties:
#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>
What is happening is the "testBox" span is up further in IE than FireFox. Is there something I can do to fix this problem? Thanks, Roy