CSS条件注释

作者: aries 分类: PHP 发布时间: 2010-04-23 11:25 ė 1672次浏览 6 0评论
gt /Greater than/大于/<!--[if gt IE 5.5]> 



gte /Greater than or equal to/大于等于/<!--[if gte IE 5.5]> 



lt /Less than/小于/<!--[if lt IE 5.5]> 



lte /Less than or equal to/小于等于/<!--[if lte IE 5.5]> 



! /Note/不等于/<!--[if !IE 5.5]> 

对于HTML的注释,例如:

<!--[if !IE]><!-->

您使用不是 Internet Explorer

<!--<![endif]-->

<!--[if IE 6]><!-->

您正在使用Internet Explorer version 6

或者 一个非IE 浏览器

<!--<![endif]-->

对于CSS的注释,例如:

<!--[if IE6.0]]

<style type="text/css">

div#box{width:500px;margin:10px; padding:10px; border:10px;}

</style>

<![endif]-->

<!--[if lt IE6.0]]

<style type="text/css">

div#box{width:530px;margin:10px; padding:10px; border:10px;}

</style>

<![endif]-->

0 css条件注释
换一个
暂无评论
Ɣ回顶部