入门12

2017-07-19  本文已影响7人  _空空

什么是 CSS hack

谈一谈浏览器兼容的思路

列举5种以上浏览器兼容的写法

IE条件注释法

只在IE下生效
<!--[if IE]>
这段文字只在IE浏览器显示
<![endif]-->

只在IE6下生效
<!--[if IE 6]>
这段文字只在IE6浏览器显示
<![endif]-->

只在IE6以上版本生效
<!--[if gte IE 6]>
这段文字只在IE6以上(包括)版本IE浏览器显示
<![endif]-->

只在IE8上不生效
<!--[if ! IE 8]>
这段文字在非IE8浏览器显示
<![endif]-->

非IE浏览器生效
<!--[if !IE]>
这段文字只在非IE浏览器显示
<![endif]-->

CSS 属性前缀法

.hack{  
    /*demo1 */  
    /*demo1 注意顺序,否则IE6/7下可能无法正确显示,导致结果显示为白色背景*/  
    background-color: red; /* All browsers */  
    background-color: blue !important;/* All browsers but IE6 */  
    *background-color: black; /* IE6, IE7 */  
    +background-color: yellow;/* IE6, IE7*/  
    background-color: gray\9; /* IE6, IE7, IE8, IE9, IE10 */  
    background-color: purple\0; /* IE8, IE9, IE10 */  
    background-color: orange\9\0;/*IE9, IE10*/  
    _background-color: green; /* Only works in IE6 */  
    *+background-color: pink; /*  WARNING: Only works in IE7 ? Is it right? */  
}  
.hacktest{   
    background-color: blue;      /* 都识别,此处针对firefox */  
    background-color: red\9;      /*all ie*/  
    background-color: yellow\0;    /*for IE8/IE9/10 最新版opera也认识*/  
    +background-color: pink;        /*for ie6/7*/  
    _background-color: orange;       /*for ie6*/  
}

浏览器私有前缀添加

-webkit-border-radius: 50%; // chrome
-o-border-radius: 50%; // opera
-moz-border-radius: 50%; // FixFore
-ms-border-radius: 50%; // IE edge

选择器前缀法

*html *前缀只对IE6生效
*+html *+前缀只对IE7生效
@media screen\9{...}只对IE6/7生效
@media \0screen {body { background: red; }}只对IE8有效
@media \0screen\,screen\9{body { background: blue; }}只对IE6/7/8有效
@media screen\0 {body { background: green; }} 只对IE8/9/10有效
@media screen and (min-width:0\0) {body { background: gray; }} 只对IE9/10有效
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {body { background: orange; }} 只对IE10有效

使用Moderniz

以下工具/名词是做什么的

条件注释

IE Hack

js 能力检测

html5shiv.js

respond.js

css reset

normalize.css

Modernizr

postCSS

一般在哪个网站查询属性兼容性?

上一篇下一篇

猜你喜欢

热点阅读