您的位置:首页 > Web前端 > CSS

CSS hack 完全手册 ( IE5.5 IE6 IE7 FF Opera Safari Chrome )

2008-11-05 09:41 519 查看
以下是 风干的果子 整理出来的CSS hack 方法。

-------------------------------------------------------------------------------- 区别IE和w3c的方法
.hack {
width:600px; /* FF */
* width:700px; /* IE */
}
-------------------------------------------------------------------------------- 区别 IE5.5、IE6、IE7、w3c .qq{ background:#f00; /* w3c*/
*background:#00f!important; /* IE7 */
_background:#0f0; /* IE6 */
_background /**/:#ccc /* IE5.5 */ } -------------------------------------------------------------------------------- 针对Opera、Safari 、Chrome
.qq { background: #000; } /* IE FF */ @media all and (min-width:0px){
.qq { background: #000; } /* Opera、Safari 、Chrome */
} --------------------------------------------------------------------------------
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: