python 46 css组合选择器 及优先级 、属性选择器
2021-06-20 20:06
标签:onclick 精确 spl tle col 图片 section sed head 一:css组合选择器 特性:每个选择器位可以为任意基本选择器或选择器组合 选择器分为以下几类: 群组选择器,子代(后代)选择器,相邻(兄弟)选择器,交集选择器,多类名选择器 1、群组选择器: 2、子代(后代)选择器: 3、相邻(兄弟)选择器: 4、交集选择器: 5、多类名选择器: 二:组合选择器优先级 三:属性选择器 python 46 css组合选择器 及优先级 、属性选择器 标签:onclick 精确 spl tle col 图片 section sed head 原文地址:https://www.cnblogs.com/zedong/p/9687487.html
DOCTYPE html>
html>
head>
meta charset="UTF-8">
title>组合选择器title>
style type="text/css">
/*组合选择器*/
/*特性:每个选择器位可以为任意基本选择器或选择器组合*/
/*群组选择器: ,隔开
控制多个*/
div, .s, section {
color: red;
}
/*子代选择器: >连接*/
body > div {
color: orange;
}
/*div > a {
text-decoration: none;
}*/
/*后代选择器: 空格连接*/
/*包含子代选择器*/
body a {
text-decoration: none;
}
/*相邻选择器: +连接*/
span + section {
background-color: pink;
}
/*兄弟选择器: ~连接*/
/*包含相邻选择器*/
div ~ section {
background-color: brown;
}
/*交集选择器*/
/*即是选择器1又是选择器2*/
i.s {
color: yellow;
}
/*多类名选择器*/
.d1 {
color: blue;
}
.d1.d2 {
color: tan;
}
.d1.d2.d3 {
color: #780;
}
style>
head>
body>
div>divdiv>
span class="s">spanspan>
section>sectionsection>
div>
a href="">a标签a>
div>
i class="s">iiiii>
div class="d1 d2 d3">呵呵div>
body>
html>
文章标题:python 46 css组合选择器 及优先级 、属性选择器
文章链接:http://soscw.com/index.php/essay/96582.html