我正在使用CMS(Joomla),它们使我可以为标签添加类,然后我可以针对该特定页面修改CSS。
我正在尝试使用MDN来找到答案,但我无法完全按照我想要的方式来工作。
这是他们在页面上拥有的JSFiddle,我在弄弄它: https://jsfiddle.net/amvz5dkb/13/
<div class="divclass">
<span class="spanclass">Span #1, in the div.
<span="betterspanclass">Span #2, in the span that's in the div.</span>
<span="betterspanclass">Span #3, in the span 1.</span>
</span>
</div>
<span>Span #4, not in the div at all.</span>
这是我的CSS
.divclass > .betterspanclass {
background-color: red;
}
这不行,只有
.divclass > span {
background-color: red;
}
似乎有作用,但根本不影响跨度3,仅影响跨度1和跨度2。我想使divclass中每个Betterspanclass的背景变为红色。这可能吗?