使用 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 设置每个启用元素的样式的详细内容,更多请关注IT视界其它相关文章!
上一篇:在 CSS 中将 Flex 项目对齐在容器的中间 下一篇:CSS 边框图像切片