Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试找到一种方法来禁用禁用的输入字段的背景颜色。我想知道是否有人可以帮助我解决这个问题?
这是我尝试过的,但没有奏效:
input[type="text"][disabled]{background-color:red;}
试试这个:
input[type="text"]:disabled{background-color:red;}
资料来源:W3学校
您可以使用它来捕获所有输入类型
input:disabled { background-color: red; }