[css]区别IE6与FF:
background:orange;*background:blue;
区别IE6与IE7:
background:green !important;background:blue;
区别IE7与FF:
background:orange; *background:green;
区别FF,IE7,IE6:
background:orange;*background:green !important;*background:blue;
针对 IE7 的 CSS Hack,具体就是:
body
html*
*+html
各浏览器适用的属性:
IE6 * html div; _property:value;
IE7 *+html div;
IE6、IE7 *property:value;
IE7、FF body>div; !important;
color:#000000; /* FF,OP支持 /
color:#0000FF; / IE8支持*/
[color:#000000; color:#00FF00; /* SF,CH支持 */
color:#0000FF9; ;/ie6,ie7,ie8/
color:#FFFF00;/ie7,ie6/
_color:#FF0000;/ie6/
body:nth-of-type(1) .CH{
color: #FF0000;/ 这是专门针对Chrome和Safari的CSS hack */
}
IE6 _property:value; *html div{ property:value;}
IE7 *+html div:{ property:value;}
IE6、IE7 *property:value;
IE7、FF property:value !important;
IE8、Opera property:value;
IE6、IE7、IE8 property:value9;
Safari、Chrome [property:value; body:nth-of-type(1) div{ property:value;}
Safari、Opera、Chrome @media all and (min-width:0px){ div { property:value;}}
FF的专用 *:lang(zh) select {font:12px !important;}
safari可见 select:empty {font:12px !important;} ???
IE系列:
selector { +property:value; } 在属性名前加上加号”+”,这个Hack只有IE系列可以识别.
selector { property:value; } 在属性名前加上星号”“,这个Hack只有IE系列可以识别.
selector { property:value; } 在属性名前加上下划线”“,这个Hack只有IE系列 (除IE7外) 识别.
- html selector{ property:value; } 在选择器上运用继承法 * html selector, 这个Hack只有IE系列 (除IE7外) 可以识别.
html// >body selector { property:value; } 在选择器上运用继承法 html// >body selector ,这个Hack只有IE系列 (除IE7外) 可以识别.
selector { property//:value; } 在属性名和冒号”:”之间加入注释,屏蔽IE6用.
selector// { property//:value; } 在选择器和花括号”{“之间以及在属性名和冒号”:”之间加入注释,屏蔽IE5和IE6用 (不屏蔽IE5.5) .
select// { property:value; } 在选择器和花括号”{“之间加入注释,屏蔽IE5用. - +html selector { property:value !important; } 在选择器上运用继承法 *+html selector 再加上 !important, 这个Hack只有IE7可以识别.
Firefox:
*:lang(lang) selector { property:value !important; } 用伪类lang(语言)再加上!important进行定义的话,目前只有Firefox可以识别.
Safari:
selector:empty { property:value !important; } 用伪类empty再加上!important进行定义的话,目前只有Safari可以识别.
Opera:
@media all and (min-width: 0px){ selector { property:value; } } 利用特殊继承法进行定义的话,目前只有Opera可以识别.
[/css]