Since IE6 does not support the child selector (see http://kimblim.dk/csstest/#ex1), what is the alternative when dealing with this browser?
I do not want to modify the m
Use this
div * { padding-left:20px; } div * * { padding-left:0; }
First you target all children, and then you reset the css declaration by targeting all grandchildren.