我是CSS新手!
我想使用外部CSS覆盖span样式。有什么建议吗?
!重要的不适合我。 示例代码如下。
<div class="abc" id= "xy" style="font-size: 30px;">
<span style="color: #009530;">bcdefghijklmnopqrstuvwxyz bananaaa</span> </div>
基本上我想用外部css覆盖文本的#009530。
我试过下面的外部css。它对我不起作用。
#xy {
color: blue !important;
}
TIA
答案 0 :(得分:1)
使用以下css:
#xy span{
color: blue !important;
}
&#13;
<div class="abc" id="xy" style="font-size: 30px;">
<span style="color: #009530;">bcdefghijklmnopqrstuvwxyz bananaaa</span>
</div>
&#13;
答案 1 :(得分:0)
<span id="xy" style="color: #009530;">bcdefghijklmnopqrstuvwxyz bananaaa</span>
CSS
#xy
{
color: blue !important;
}