El selector predeterminado se utiliza para establecer un elemento predeterminado en un grupo del mismo tipo de elemento en un formulario. Este selector se utiliza en botón, opción, botón de opción y casilla de verificación.
Sintaxis:
:default { //property }
Ejemplo:
<!DOCTYPE html> <html> <head> <style> input[type="checkbox"]:default { box-shadow: 0 0 1px 1px gray; } </style> </head> <body> <h3>Select Language</h3> <form action=""> <input type="checkbox" name="lan" value="c" checked> C <br> <input type="checkbox" name="lan" value="c++"> C++ <br> <input type="checkbox" name="lan" value="java"> Java <br> <input type="checkbox" name="lan" value="c#"> C# <br> <input type="checkbox" name="lan" value="python"> Python <br> <input type="checkbox" name="lan" value="javascript"> JavaScript <br> </form> </body> </html>
Producción:
Navegadores compatibles
Publicación traducida automáticamente
Artículo escrito por Vishal_Khoda y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA