El selector :empty se usa para seleccionar ese elemento que no contiene ningún elemento secundario (incluido el Node de texto).
Sintaxis:
:empty { // CSS property }
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>empty selector</title> <style> h1 { color:green; } div:empty { width: 150px; height: 20px; background: green; } </style> </head> <body> <center> <h1>GeeksforGeeks</h1> <h2>:empty selector</h2> <div></div><br> <div>A computer science portal for geeks</div> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con :empty selector se enumeran a continuación:
- Apple Safari 3.1 y superior
- Google Chrome 1.0 y superior
- Borde 12.0 y superior
- Firefox 1.0 y superior
- Ópera 9.5 y superior
- Internet Explorer 9.0 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA