/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Use "\9" to target IE8 and below. Use "*" to target IE7 and below. Use "_" to target IE6. Example: body { border:1px solid red; /* standard */ border:1px solid blue\9; /* IE8 and below */ *border:1px solid orange; /* IE7 and below */ _border:1px solid blue; /* IE6 */ }