Click to See Complete Forum and Search --> : 1px gap in IE5


mumford
03-08-2005, 08:39 AM
Hi

Could someone take a look at this please http://www.arlo-group.com/test/

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.

Thanks

Fang
03-08-2005, 10:03 AM
You 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;
}