CSS hack——不同浏览器的CSS应对法
1、IE条件注释法:
lte表示“小于等于”,“lt”表示“小于”,“gte”表示“大于等于”,“gt”表示“大于”,“!”表示“不等于”。
<!--[if IE 6]> <link type="text/CSS" href="ie6.css" rel="stylesheet" /> <![endif]--> <!--[if gt IE 7]> <link type="text/CSS" href="ie7.css" rel="stylesheet" /> <![endif]-->
2、选择符前缀法:
<style type="text/CSS"> .test{width:80px;} /*IE 6,IE 7,IE 8*/ *html .test{width:60px;} /*only for IE 6*/ *+html .test{width:70px;} /*only for IE 7*/ </style>
3、样式属性前缀法:
“_”只在IE6下生效,“*”在IE6和IE7下生效
<style type="text/CSS"> .test{width:80px;*width:70px;_width:60px;} </style>
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步