如何解决css样式表在不同浏览器中显示效果不同的问题

一种简单的办法就是采用:使用IE专用的条件注释

<!--其他浏览器 -->
<link rel="stylesheet" type="text/css" href="css.css" />

<!--[if IE 7]>
<!-- 适合于IE7 -->
<link rel="stylesheet" type="text/css" href="ie7.css" />
<![endif]-->

<!--[if lte IE 6]>
<!-- 适合于IE6及一下 -->
<link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->

上一篇:带你读《Python真好玩:教孩子学编程》之三:这是什么?变量


下一篇:浅谈JavaScript中的异步处理