jimmyshoes
Programmer
I am using
I am trying to create a very simple layout
123
456
Problem
In firefox this displays as hoped for
123
456
however, in ie it is rendered
123 456
I wanted absolute positioning because I am trying to create drop down boxes and I do not want to effect the page contents below
How should I do this so it renders
123
456
in all browsers?
Thanks in advance
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">[/URL]
I am trying to create a very simple layout
123
456
Code:
<div>
123
<div style="position:absolute">
456
</div>
</div>
Problem
In firefox this displays as hoped for
123
456
however, in ie it is rendered
123 456
I wanted absolute positioning because I am trying to create drop down boxes and I do not want to effect the page contents below
How should I do this so it renders
123
456
in all browsers?
Thanks in advance