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
Do you need direct child? IE6 supports descendant selectors like
div span { ... }
Perhaps you could leverage that to target what you want. Perhaps you could post some code so that we could give you a more specific answer?