Correcting teacher:WJ
Correction status:qualified
Teacher's comments:整体写的不错!很详细
元素<class<id(*属于元素级别)
举例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#container{
position: absolute;
top: 300px;
left: 300px;
width: 156px;
height: 156px;
}
.items{
width: 50px;
height: 50px;
margin: 1px;
background-color: lightblue;
float: left;
line-height: 50px;
text-align: center;
}
.items.blue{
background-color: blue;
}
.items#red{
background-color: lightpink;
}
body{
background-color: lightslategray;
}
</style>
</head>
<body>
<div id="container">
<div class="items">1</div>
<div class="items">2</div>
<div class="items">3</div>
<div class="items">4</div>
<div class="items blue">5</div>
<div class="items" id="red">6</div>
<div class="items">7</div>
<div class="items">8</div>
<div class="items">9</div>
</div>
</body>
</html>
效果图:
[========]
[========]
父子选择器 >
.container > .item-us 选择 .container(起点) 下的子.item-us类
同级相邻选择器 +
.item.5_3_2 + li 选择 .item.5_3_2(起点) 同级兄弟li
同级所有选择器 ~
.item.5_3_2 + li 选择 .item.5_3_2(起点) 之后的所有li
父类 > :first-child(){…}
父类 > :last-child(){…}
父类 > :nth-child(expr(n)) n == 0
父类 > :nth-last-child(expr(n)) n == 0
父类 > 子类:last-of-type(#) 分组中最后一个
父类 > 子类:nth-of-type(expr(n)) n ==0
父类 > 子类:nth-last-of-type(expr(n)) n ==0
:target 配合,实现锚点操作ID使用
#id:target{…}当前id元素被锚点点击执行
:focus
input:focus{…}获取焦点时执行
::seletciton
input::selection{…}选中时执行
:not(条件) 对匹配的元素进行排除