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

除了IE浏览器能识别之外,其他浏览器都不能识别的html写法

时间:2014-12-01 15:44:27      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   sp   div   log   html   

最近写html页面的时候发现顶部边界margin-top用了定位之后,IE的跟其他浏览器不同,所以用到了把IE跟其他浏览器区分开来的写法

<!--[if !IE]>
    <div class="clear-30"></div>
这样写是错误的
    <![endif]-->

像上面的写法,是错误的。正确的写法应该是这样:

<!--[if !IE]><-->
    <div class="clear-30"></div>
这样写才是正确的
    <![endif]-->

此功能应用于www.weixh.net顶部导航

除了IE浏览器能识别之外,其他浏览器都不能识别的html写法

标签:style   blog   http   ar   color   sp   div   log   html   

原文地址:http://www.cnblogs.com/sanjuantianshu/p/4134953.html

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