码迷,mamicode.com
首页 > Web开发 > 详细

css hack

时间:2015-04-10 12:58:29      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

css文件只加载到IE浏览器

<!-- [if IE] >

<link ref="stylesheet" type="text/css" href="test.css" />

<! [endif] -->

hack关键字:

lte:小于等于、lt:小于、gte:大于等于、gt:大于、!:不等于

css文件只加载到大于IE6的浏览器

<!-- [if gt IE 6] >

<link ref="stylesheet" type="text/css" href="test.css" />

<![endif] -->

css样式只加载到不是IE6的浏览器

<!-- [if ! IE 6] >

<style type="text/css">

.a{****}

</style>

<![endif] -->

javascript代码只加载到小于IE8的浏览器

<!-- [if lt IE8]>

<script type="text/javascript">

alert(111);

</script>

<![endif] -->

 

针对浏览器的hack前缀

.test{width:60px;/*所有浏览器*/ _width:60px;/*IE6浏览器*/ *width:60px;/*IE7浏览器*/}

*html .test{}/*IE6浏览器*/

*+html .test{}/*IE7浏览器*/

css hack

标签:

原文地址:http://www.cnblogs.com/wjly/p/4414077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!