标签:style color sp c ad ef r 学习 bs
1 !important
表示此属性需要优先考虑;
<head>
    <title>Page Title</title>
    <style type="text/css">
        a {
            color: black !important; 《----优先属性
        }
    </style>
</head>
<body>
    <a style="color: red;" href="aaaaaa">visit</a> 〈---就算被设定为红色,最后还是现实黑色
</body>
标签:style color sp c ad ef r 学习 bs
原文地址:http://www.cnblogs.com/spchenjie/p/3974230.html