Soldato
- Joined
- 24 Nov 2002
- Posts
- 16,379
- Location
- 38.744281°N 104.846806°W
I'm trying to do something incredibly simple in css:
It all works fine in IE, but in Opera/Safari/Mozilla, the pre-content body comes out like:
Using:
Code:
................header.................
blah
.................body...................
<hr>
left column right column
<hr>
................content................
blah blah
blah
................/content................
................./body...................
.................footer..................
It all works fine in IE, but in Opera/Safari/Mozilla, the pre-content body comes out like:
Code:
<hr>
left column <hr> right column
content................
Using:
Code:
<div id="hr" style="width: 727px;"><hr></div>
<div id="top" style="width: 727px;">
<div align="left" id="leftcolumn" style="float:left;">
blah
</div>
<div align="right" id="right column" style="float:right;">
blah
</div>
</div>
<div id="hr" style="width: 727px;"><hr></div>
<div id="content">
Last edited: