请用css定义p标签,要求实现以下效果:字体颜色在IE6下为黑色(#000); IE7下为红色(#f00); 其他浏览器下为绿色(#0f0);
p{
color: #0f0;
_color: #000; /*ie6以下*/
}
/*ie7*/
*+html p{
color: #f00;
}
- 知识点 - CSS hack
请用css定义p标签,要求实现以下效果:字体颜色在IE6下为黑色(#000); IE7下为红色(#f00); 其他浏览器下为绿色(#0f0);
p{
color: #0f0;
_color: #000; /*ie6以下*/
}
/*ie7*/
*+html p{
color: #f00;
}