html/css判断浏览器

来源:互联网 发布:同花顺证券行情分析软件 编辑:程序博客网 时间:2024/06/05 22:44
<!--[if lte IE 6]>
<LINK rel="stylesheet" type="text/css"href="images/StyleSheet.css" />
<![endif]-->
<!--[if IE 7]>
<LINK rel="stylesheet" type="text/css"href="images/css.css" />
<![endif]-->

lte:就是Less than or equal to的简写,也就是小于或等于的意思。
lt :就是Less than的简写,也就是小于的意思。
gte:就是Greater than or equal to的简写,也就是大于或等于的意思。
gt :就是Greater than的简写,也就是大于的意思。
! :就是不等于的意思,跟javascript里的不等于判断符相同