What is first child in pseudo class?
What is first child in pseudo class? The :first-child CSS pseudo-class represents the first element among a group of sibling elements. /* Selects any that is the first element among its siblings */ p:first-child { color: lime; } Note: As originally defined, the selected element had to have a parent. How do you target your […]