Files
ClassContent/历届学生/陈一航/2020-03-11/css/index.css
2024-09-27 02:06:13 +08:00

18 lines
202 B
CSS

p,span{
color: red;
}
.two {
color: blue;
}
#three {
color: green;
}
li:nth-child(5n) {
color: green;
}
ul li:first-child {
color: hotpink;
}
ul li:last-child {
color: hotpink;
}