要为每个启用的元素设置样式,请使用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>
以上是使用 CSS 设置每个启用元素的样式的详细内容。更多信息请关注PHP中文网其他相关文章!