Skip to content

24 ways to impress your friends

Vote down?

pawel

So we have changed:

div#header { margin-top:0; } * html div#header {margin-top:-3px;}

To:

div#header {margin-top:-3px;} body > div#header {margin-top:0;}

In both cases IE7 will get { margin-top:0; } (it won’t parse * html, but it will understand child selector).

Do I miss something or there’s no difference?