区分IE8/IE7/IE6和其他浏览器实例页面

代码:

CSS代码:
.ie6_7_8{
    width:300px;
    padding:40px;
    background:#f0f3f9;
    color:blue; /*所有浏览器*/
    color:red\9; /*IE8以及以下版本浏览器*/
    *color:green; /*IE7及其以下版本浏览器*/
    _color:purple; /*IE6浏览器*/
}
                
HTML代码:
<div class="ie6_7_8">基本色为深蓝,IE8为红色,IE7为绿色,IE6为紫色</div>
                

效果:

基本色为蓝色,IE8为红色,IE7为绿色,IE6为紫色