批改状态:未批改
老师批语:
子元素选择器
ul :first-child {
background-color: coral;
}
ul :last-child {
background-color: coral;
}
ul :nth-child(6) {
background-color: coral;
}
ul :nth-last-child(3) {
background-color: coral;
} 注意::nth-child()和:nth-last-child()均是从1开始
类型选择器
ul li:first-of-type {
background-color: darkorchid;
color: white;
}
ul li:last-of-type {
background-color: darkorchid;
color: white;
}
ul li:nth-of-type(6) {
background-color: darkorchid;
color: white;
}表单
form :enabled
background-color: wheat;
}
form :checked + label {
color: red;
}
form :invalid {
color: red;
}
form :focus {
background-color: lightgreen;
}
button:hover {
width: 56px;
height: 28px;
background-color: black;
color: white;
}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号