我想CSS标签标签中的文本,但是我无法访问html文件,而只能访问CSS文件,现在我想在文本中插入CSS,该怎么做? 谢谢!
<label style="background-color:rgba(158, 148, 11, 1); color:rgba(255, 255, 255, 1);" for="wpf_pk_mau_69"> THE TEXT NEED CSS</label>
答案 0 :(得分:1)
将此CSS添加到样式文件中。
label[for=wpf_pk_mau_69]
{
background-color:rgba(158, 148, 11, 1) !important;
color:rgba(255, 255, 255, 1) !important;
}
答案 1 :(得分:0)
如果您无法访问HTML文件(如果已经拥有样式)并且想要覆盖它,则可以通过这种方式添加CSS,然后使用“!important”
label[for=wpf_pk_mau_69]
{
background-color:rgba(158, 148, 11, 1);
color:rgba(255, 255, 255, 1);
}