button:hover{
color: purple;
}
button:focus{
color: green;
}
button:disables{
background: gray;
}
li:first-child {
font-size: 3rem;
}
li:last-child {
font-size: 3rem;
}
// first-of-type last-of-type
li:nth-child(2){
}
li:nth-child(odd | even) {
}
li:nth-child(3n) {
// 3rd, 6th, 9th
}
li:not(:hover) {
text-decoration: line-through;
color: orangered;
}
.dropdown:focus-within {}
<p lang="es">hola!</p>
p:lang(...) {}
p:lang(de):nth-of-type(3n){
color:gold;
}