gpt4 book ai didi

html - 将 CSS 属性应用于类,但前提是元素具有另一个特定类

转载 作者:太空宇宙 更新时间:2023-11-03 20:19:19 25 4
gpt4 key购买 nike

我有这个 html:

 <li class="arrow branches"></li>
<li class="arrow branches"></li>
<li class="arrow branches"></li>

<li class="arrow"></li>
<li class="arrow"></li>
<li class="arrow"></li>

我只想为“箭头分支”类提供 css 命令,如何为它们提供不会影响“箭头”类的 css?

最佳答案

创建类.branches:

.branches{
color:#f00;
}

如果你只想将它应用到那些有分支和箭头的元素,那么将它们放在一起:

.arrow.branches{
color:#f00;
}

但是如果你想将它应用到多个类中,那也很容易:

.branches, .otherClass{
color:#f00;
}

关于html - 将 CSS 属性应用于类,但前提是元素具有另一个特定类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13861602/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com