I have written some CSS which targets elements using the parent > child selector. Specifically for tables so I can apply certain styles to the headers and footers like this
table > thead > tr > th ...
table > tbody > tr > td ...
//there are other uses in the css as well
This works great, except in IE6. What is my best approach for unfactoring this css to support IE6?