El primer hijo es una pseudoclase en CSS que representa el primer elemento entre un grupo de elementos hermanos. El Selector :first-child se utiliza para apuntar al primer elemento secundario de su padre para el estilo.
Sintaxis:
:first-child { //property }
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <style> p:first-child { background: limegreen; color: white; font-style: italic; font-size: 1.875em; } </style> </head> <body> <p>I am first child.</p> <p>I am second child.</p> <p>I am third child.</p> <p>I am last child.</p> </body> </html>
Producción: