1px gap in IE5

liunx

Guest
Hi

Could someone take a look at this please <!-- m --><a class="postlink" href="http://www.arlo-group.com/test/">http://www.arlo-group.com/test/</a><!-- m -->

When viewd in IE5 the border-right on the nav div does not line up with the margin right on the left div below it....... could someone tell me what I am doing wrong please.

ThanksYou are mixing border and margin to produce the same width in #leftcontent and #nav.

#content{
margin-left:183px;
background:gray;
}
#leftcontent{
float:left;
width:183px;
/*margin-right:1px;*/
border-right:1px solid #fff;
background:red;
}
 
Back
Top