pawel 19 December 2005 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?
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?