CSS-hack

针对不同的浏览器写不同CSS样式的过程,就叫hack

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .box{
            width: 100px;
            height: 100px;
            background: red;
            background: blue\9;   IE10以及IE10以下
            *background: yellow;    IE7以及IE7以下
            _background:green;    IE6及IE6以下
        }
        
    </style>
</head>
<body>
    <div class="box"></div>
</body>
</html>

 

posted @ 2017-05-14 19:42  影子疯  阅读(99)  评论(0编辑  收藏  举报