使用 CSS 设置每个启用元素的样式
要为每个启用的元素设置样式,请使用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 设置每个启用元素的样式的详细内容,更多请关注双恒网络其它相关文章!