gpt4 book ai didi

css - nth-child 中奇数/偶数子元素的问题

转载 作者:行者123 更新时间:2023-11-28 05:15:38 25 4
gpt4 key购买 nike

我有一个这样的网站:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="article_style.css" />
</head>
<body>
<div class="section">
<!--<h1>header</h1>-->
<div>
paragraph
</div>
<div>
paragraph
</div>
<div>
paragraph
</div>
</div>
<div class="section">
<div>
paragraph
</div>
<div>
paragraph
</div>
<div>
paragraph
</div>
</div>
</body>
</html>

这是 CSS:

div.section
{
border: 1px solid black;
}
div.section div:nth-child(even)
{
color: Green;
}
div.section div:nth-child(odd)
{
color: Red;
}

这是结果:

result

这没问题,因为在 each 部分中,奇数 div 为红色,偶数 div 为绿色。但是当我在第一部分的开头添加标题时(示例中的注释代码)我得到了这个:

result2

我不想这样。我想要像以前一样,但只是在第一部分有一个标题。所以首先是标题,然后是红色段落。

最佳答案

使用nth-of-type相反:

Live Demo

div.section
{
border: 1px solid black;
}
div.section div:nth-of-type(even)
{
color: Green;
}
div.section div:nth-of-type(odd)
{
color: Red;
}

关于css - nth-child 中奇数/偶数子元素的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39331299/

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