当前位置:
代码迷
>>
HTML/CSS
>> CSS式样引用浏览器判断
详细解决方案
CSS式样引用浏览器判断
热度:
105
发布时间:
2012-09-02 21:00:34.0
CSS样式引用浏览器判断
<!-- 放置所有浏览器的样式 -->
<link rel="stylesheet" href="style.css" type="text/css" />
<!-- 只放置 IE 必须的, 而不能通过 W3C 的代码 -->
<!--[if IE]>
<link rel="stylesheet" href="style_ie.css" type="text/css" />
<![endif]-->
查看全文
相关解决方案