CSS | :selector habilitado
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–> … Continue reading «CSS | :selector habilitado»