复制内容到剪贴板
代码:
@import url("website.css")
注意这句,只对ie5版本以上和现代浏览器才有郊,ie4,不会认识的..
============================================================
@import url("oncss.css") screen;
ie系列全不识别. ..因为ie对指定设备类型的选项都不支持..firefox ok可以识别;
===========================================================
注释hack
<style type="text/css">
*{ margin:0px; padding:0px;}
#content { background-color:red;}
#content /**/{ background-color:green;}
</style>
ie6,ie7,firefox都读成green;
ie5以下,读成red;
===========================================================
属性选择符hack
<style type="text/css">
*{ margin:0px; padding:0px;}
span.test1{ color:red;}
span[class=test1]{ color:blue;}
</style>
ie6,ie7,读第一句...firefox读第二句..........这是一个css非常优秀的选择符,但是ie系列不支持.firefox下工作正常,测试如下
提示:您可以先修改部分代码再运行
复制内容到剪贴板
代码:
利用此方法可以区别ie系列,跟firefox系列,代码如下
#test{color:red;}
[xmlns] #test{color:blue;}
ie读第一句
firefox读第二句
要注意的是html标签要有xmlns作为顶级选择符