CSS | :Selector raíz
El selector :root se utiliza para seleccionar todos los elementos de un documento HTML. Este selector cubre todos los elementos HTML o etiquetas. Sintaxis: :root { // CSS property } Ejemplo: <!DOCTYPE html> <html> <head> <title>root selector</title> <style> h1 { color:White; } :root { background: green; } body { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> … Continue reading «CSS | :Selector raíz»