Excuse a noob question, but I'm seeing a difference in output between Moz & IE that I can't crack. I'm using the following (courtesy
as (part) of my layout.css
Using this in my page, I can't get the tops of the right and left columns to line up in IE and in Moz at the same time:
Any ideas please? or where should I look next?
________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first
'If we're supposed to work in Hex, why have we only got A fingers?'
for steam enthusiasts
Code:
#hdr{
height:1px;
background:#CCFFCC url(images/bg2.gif) repeat-x;
border:0px solid #000000;
margin:0px 0 0 0;
}
#lh-col{
position: absolute;
top: 80px;
left: 20px;
width: 180px;
border: 1px solid #000000;
background: #DDFFDD;
color: #333333;
margin: 20px;
padding: 10px;
height: 600px;
}
#rh-col{
margin: 50px 20px 20px 260px;
border: 1px solid #000000;
background: #DDFFDD;
color: #333333;
padding: 20px;
position: relative;
top: 0px
}
Using this in my page, I can't get the tops of the right and left columns to line up in IE and in Moz at the same time:
Code:
<div id="hdr">
<h1>Essex Steam</h1>
</div>
<!-- left column -->
<div id="lh-col"><br />
<h4 align="center">Contents
<br /><br />
<a href="index.htm">Home</a>
</div>
<!-- end of left column -->
<!-- right column -->
<div id="rh-col">
<p align="center"><a href="index.htm"
title="Go to main page."><img src="images/logo1.jpg" alt="Home" border="0"
width="500" height="160" /></a></p>
<br />
<p>Welcome to the Essex Steam site.</p>
<br />
</div>
________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first
'If we're supposed to work in Hex, why have we only got A fingers?'
for steam enthusiasts