Как влияют пробелы на псевдоклассы и псевдоэлементы?
В первом случаи пробелы не нужны,во втором пробелы нужны.
li {
background-color:white;
}
li:first-child {
background-color:red;
}
li:last-child {
background-color:yellow;
}
li {
background-color:white;
}
.target:first-child {
background-color:red;
}
.target:last-child {
background-color:yellow;
}