Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
section h1:first-child { background: yellow } section h1:last-child { background: yellow }
The :last-child pseudo-class represents an element that is the last child of some other element. Same as :nth-last-child(1).
section :first-child { background: yellow } section :last-child { background: yellow }