首页 > Web开发 > 详细

WEB前端基础

时间:2020-04-07 23:28:35      阅读:90      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>
        /*
        css的权重: id > 类 > 标签
        */
        #father.father #son.son{/* id:2 类:2 标签:0 */
            color: aqua;
        }
        #father #son{/* id:2 类:0 标签:0 */
            color: red; !important;
        }
        .father .son p{/* id:0 类:2 标签:1 */
            color: yellowgreen;
        }
        .father .son p.one{/* id:0 类:3 标签:1 */
            color: blue;
        }
        #one{/* id:1 类:0 标签:0 */
            color: hotpink;
        }
    </style>

</head>
<body>
<!--
    emmet语法
    ul>li{我是第&个li}*10
    div.father#father
    div.father#father>div.son#son>p.text#胡歌
-->
<div class="father" id="father">
    <div class="son" id="son">
        ddd
        <p class="one" id="one">我是一个p标签</p>
    </div>
</div>



</body>
</html>

 

WEB前端基础

原文:https://www.cnblogs.com/qihuang94/p/12656887.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!