◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
要为每个启用的元素设置样式,请使用CSS的:enabled选择器。
您可以尝试运行以下代码来为启用的元素设置样式
在线演示
<!DOCTYPE html> <html> <head> <style> input:enabled { background: blue; } </style> </head> <body> <form action = ""> Subject <input type = "text" name = "subject"><br> Student: <input type = "text" name = "student"><br> Age: <input type = "number" name = "age" disabled><br> </form> </body> </html>
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。