我试图找到一种禁用禁用输入字段的背景颜色的方法.我想知道有人可以帮助我吗?
这是我试过的,没有办法:
input[type="text"][disabled]{background-color:red;}
解决方法
改为:
input[type="text"]:disabled{background-color:red;}
资料来源:W3 schools