Home › Forums › CSS › ul border-bottom problem in IE › Re: ul border-bottom problem in IE
May 20, 2009 at 10:49 pm
#57877
Participant
Quote:
Code:
-moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px;
That’s not CSS 2.1 so it won’t work in IE6. Honestly I haven’t even looked into it because it doesn’t work in IE6.
I would recommend formatting your CSS so it’s easier to read though (at least for posting here). for example:
Code:
#nav ul {
padding: 0 0 36px;
margin-left: 25px;
border-bottom: 1px solid black;
width: 422px;
}
padding: 0 0 36px;
margin-left: 25px;
border-bottom: 1px solid black;
width: 422px;
}