El selector :habilitado se usa para establecer el color de fondo en el elemento habilitado en un formulario.
Sintaxis:
:enabled { //property }
Ejemplo:
<!DOCTYPE html> <html> <head> <style> input[type=text]:enabled { background: limegreen; } input[type=text]:disabled { background: silver; } </style> </head> <body> <form action=""> Name: <input type="text" value="Dharamenda"> <br> <!--enabled--> User ID: <input type="text" disabled="disabled" value="@dharam"> <br> <button type="button">Submit</button> </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