复制内容到剪贴板
代码:
<!--[if lte IE 6]>
<link href="ie6.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if IE 7]>
<link href="ie7.css" rel="stylesheet" type="text/css" />
<![endif]-->根据不同的浏览器编写不同的css样式
如果是IE6或者更低版本 则调用第一个css是IE7就用IE7的样式。。。。可以解决那种在ie6里面和ie7不能互相兼容的问题。。
仅供参考