18 lines
202 B
CSS
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;
|
|
} |