为所有已启用的设置样式元素与 CSS
要为每个启用的 <input> 元素设置样式,请使用 CSS :enabled 选择器。
示例
你可以尝试运行以下代码为已启用的 <input> 元素设置样式
<!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>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
安卓
Python
C 语言
C++
C#
MongoDB
MySQL
Javascript
PHP