Select all the CSS hack(s) that IE6 can understand for class red
<p class=”red”>text</p>
<!—[if IE 6]> .red{color:red}>![endif]-->
.red{_color:red}
.red{*color:red}
* html .red{color:red}
.red{color:red}
- Line 1, 3
- Line 2, 3
- Line 2, 4
- Line 1, 2, 4
- All of the above
I encounter this question in a quiz. Don't have IE6 in my pc to experiment with but curious to know the answer.
My additional doubt, 6. Which one is valid/suggested? 7. Is it still need to hack IE6 even after release of IE8? I don't expect a lengthy discussion on this. Just yes/no will do. My intention is to know how fellow coders feel about it. :-)