这是我的CSS代码段:-
.radio label {
color: blue !important;
}
这是HTML的样子:-
<label for="contactmethod_delivery" class="radio tg-control-label">Delivery</label>
但是输出标签仍然不符合CSS中定义的颜色...
我希望我不会缺少任何必需的信息。请告诉我是否这样做。谢谢。
答案 0 :(得分:0)
仅尝试 广播是标签的类别
.radio {
color: blue !important;
}
答案 1 :(得分:0)
您需要检查如何在CSS中进行选择。选中CSS-Selectors。
在此代码段中,选择所有labels
类的radio
。
label.radio {
color: blue !important;
}
<label for="contactmethod_delivery" class="radio tg-control-label">Delivery</label>
答案 2 :(得分:0)
$( "ancestor descendant" )
;
元素的后代可以是祖先元素的子代,孙代,曾孙代,等等。
因此,您的代码尝试查找具有label
的元素的class="radio"
个子元素或孙子元素。
label.radio {
color: blue !important;
}
如果两个选择器都在同一个元素内,请不要用逗号分隔选择器。