Example: http://jsfiddle.net/xUrDc/

I'm trying to surround each li with a border exactly one pixel wide. In order that the lines meet properly, I'm setting margin-top:-1px on each li (Otherwise the border is too thick between each).

When I set my browser to IE7 in debug mode, the border at the top disappears. Can anybody tell me why this might be the case or suggest a better way to achieve the look I want?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Ignoring the possibility of doing it a different way, you can fix IE7 by adding zoom: 1 to ul li.

See: http://jsfiddle.net/xUrDc/1/

Why does this work? In short, it provides a magical property known as hasLayout to the element in IE7, which happens to fix this bug.

More info: what bug does zoom:1; fix in CSS

link|improve this answer
2  
+1 nice work, you really know your CSS :) – alex Jun 10 '11 at 5:41
Nice, does this cause any side effects in other browsers? – Andrew Jun 10 '11 at 5:44
In short: no. (WebKit does support zoom, but setting zoom: 1 changes nothing because it's the default) – thirtydot Jun 10 '11 at 5:46
@thirtydot it seems to break when I add the ul a styles: jsfiddle.net/xUrDc/3 (Apologies for not putting these in the question). – Andrew Jun 10 '11 at 5:56
@Andrew: For whatever reason, you need to remove the whitespace: jsfiddle.net/xUrDc/4 – thirtydot Jun 10 '11 at 5:58
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.