gpt4 book ai didi

css - 覆盖 css 属性

转载 作者:行者123 更新时间:2023-11-28 13:45:48 24 4
gpt4 key购买 nike

我的Html是这样的:

<a class="another addAnother">Add another</a>

我在外部样式表中使用像这样的“另一个”类为上面定义了一个样式。

fieldset.associations a.another {
color: #693;
display: block;
margin: 7.5px 0px 15px;
}

我正在尝试使用“addAnother”类覆盖标签的样式,就像这样(无论需要什么地方):

fieldset.associations a.addAnother {
display: none;
}

但我无法覆盖。感谢您的帮助。

是否有任何规则在覆盖样式时选择器应该相同(我试过了,但没有用)??

最佳答案

这两个属性具有相同的重要性,因为两个选择器同样具体。因此,如果第二个出现在 CSS 中的第一个,则需要获得更多的重要性来覆盖较低的那个。您可以通过更具体的方式覆盖第一个,如下所示:

fieldset.associations a.addAnother.another {
display: none;
}

#someID fieldset.associations a.addAnother {
display: none;
}

body fieldset.associations a.addAnother {
display: none;
}

关于css - 覆盖 css 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5325156/

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