任务12

2017-10-19  本文已影响0人  dongguazhon

什么是 CSS hack

谈一谈浏览器兼容的思路

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

<!--[if IE 6]> 
    <p>You are using Internet Explorer 6.</p>
 <![endif]-->
<!--[if !IE]><!--> 
    <script>alert(1);</script> 
<!--<![endif]-->
 <!--[if IE 8]>
     <link href="ie8only.css" rel="stylesheet"> 
<![endif]-->
.box{ 
    color: red; _color: blue; /*ie6*/
    *color: pink; /*ie67*/ 
    color: yellow\9; /*ie/edge 6-8*/
}

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

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

上一篇 下一篇

猜你喜欢

热点阅读