Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:
<ul class="list">
<li>item1</li>
<li>item2</li>
<li>item3</li>
<li>item4</li>
<li>item5</li>
<li>item6</li>
<li>item7</li>
<li>item8</li>
<p>a1</p>
<p>a2</p>
<p>a3</p>
</ul>
.list > li:nth-of-type(3) {
color: bisque;
}
/_ ()内输入要选择的第几个 li 标签_/
.list > :first-of-type {
color: bisque;
}
/_ 选择第一个 li 标签_/
.list > :last-of-type {
color: bisque;
}
/_ 选择左后一个 li 标签_/
(an+b)参数
匹配单个元素
.list > li:nth-of-type(0n+3) {
color: bisque;
}
/_ ()内输入要选择的是 "an+b";从n=0开始往下循环.
"0*1+3=3";
"0*2+3=3";(0*2还是=0,再加3最终还是等于3,所以这个a=0,为选择一个标签)
所以可以直接输入3偏移量_/
.list > li:nth-of-type(1n+3) {
color: bisque;
}
/_ ()内输入要选择的是 "an+b" 从n=0开始往下循环;
a=1
"1*0+3=3";
"1*1+3=4";
"1*2+3=5";
"1*3+3=6";
直到循环到最后一个1*6+3=9;
当循环等于9是 li标签没有9个所以最后一个=9的不生效;
选择结果就是3-8的li标签被选中._/
.list > li:nth-of-type(-n+3) {
color: bisque;
}
/_ ()内输入要选择的是 "an+b" 从n=0开始往下循环;
"-1*0+3=3";
"-1*1+3=2";
"-1*2+3=1";
"-1*3+3=0";
直到循环到最后一个"-1*3+3=0";
当循环等于0是 li标签没有0个所以最后一个=0的不生效;
选择结果就是1-3的li标签被选中._/
.list > li:nth-of-type(2n+1) {
color: bisque;
}
/_ ()内输入要选择的是 "an+b" 从n=0开始往下循环;
"2*0+1=1";
"2*1+1=3";
"2*2+1=5";
"2*3+1=7";
选择结果就是1,3,5,7的li标签被选中._/
.list > li:nth-of-type(2n) {
color: bisque;
}
/_ ()内输入要选择的是 "an+b" 从n=0开始往下循环;
"2*0+0=0";
"2*1+0=2";
"2*2+0=4";
"2*3+0=6";
"2*3+0=8";
选择结果就是2,4,6,8的li标签被选中._/
<input type="text" disabled />
<input type="text" enabled />
<style>
input:disabled {
background-color: rgb(206, 20, 20);
}
input:enabled {
background-color: rgb(145, 199, 27);
</style>
<input type="text" disabled />
<input type="text" />
<input type="text" />
<br />
<p></p>
<input type="radio" name="sex" value="0" /><label for="m">男</label>
<input type="radio" name="sex" value="1" /><label for="f">女</label>
<style>
input:checked + label {
color: rgb(15, 216, 58);
}
</style>
<!-- input:checked 为表单为选中状态;
+ label 为相邻的 label标签(+ 为相邻的)
-->