day15 python css

来源:互联网 发布:自学编程网站有哪些 编辑:程序博客网 时间:2024/06/06 00:05
1.css存在形式最高级的<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style>
        div{
            background-color: green;!important;#加上important
            width: 50px;
            height: 40px;


        }
        .c1{
            color: red !important;
        }
        .c2{
            color: yellow;
        }
    </style>
</head>
<body>




        <div class="c1 c2">fsdfsdfs</div>


</body>
</html>
0 0
原创粉丝点击