我有以下 HTML:
<div class="form">
<input disabled="disabled" data-ng-model="dataId" type="text" />
<div class="disabled input-type-text">123</div>
</div>
我正在尝试匹配禁用和输入类型文本的类。我尝试了以下方法,但它不起作用:
.form .input-type-text.disabled ,
.form input.disabled,
.form input:disabled,
.form select.disabled,
.form select:disabled,
.form textarea.disabled {
color: #000000;
background-color: #e6e6e6;
border: 1px solid #adcede;
opacity: 0.5;
}
有人可以给我一些关于如何匹配 CSS 选择器的建议吗?请注意,这确实适用于<input>
但不适用于<div>