gpt4 book ai didi

css - :nth-child selector conflicts with another

转载 作者:行者123 更新时间:2023-11-28 16:41:54 26 4
gpt4 key购买 nike

我已将 :nth-child 用于列表元素 - li:nthchild(2) 在类中 - “one”。页面上有另一个列表元素属于另一个类(class="two)",类"one"的css适用于类"two"的列表元素。

这是第一个列表元素的 CSS"

.one li:nth-child(2){

position: absolute;

width: 80% !important;

background-color: orange;

color: #FFF;

-webkit-border-radius: 2px;

-moz-border-radius: 2px;

border-radius: 2px;
}

这是给二年级的:

.two li:nth-child(2) {
float: left;
margin: 0 5px 5px 0 !important;
display: block;
list-style: none;
border: none;
background: none;
}

我不希望类“二”继承类一的 css。谁能告诉我如何使 .one li:nthchild(2) css 仅适用于该类而不影响其他类?

谢谢!

最佳答案

ul.two 似乎在 ul.one 的子 li 中。

要更正此问题,请像这样修改您的 CSS:

.one > li:nth-child(2) {
...
}

应该这样做。

关于css - :nth-child selector conflicts with another,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20278583/

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