gpt4 book ai didi

javascript - 最后一个 child 的最后一个 child 的风格

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

我有以下 HTML:

<section></section>

<section id="top">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li> <!-- STYLE THIS -->
<li>5</li> <!-- STYLE THIS -->
</ul>
</section>

<section></section>

我有动态生成的 HTML,我该如何设计上面两件事的样式?将样式应用于 sectionid="top" ,并为最后 2 个设置样式 list-items在最后ul .

最佳答案

是这样的吗?

#top > ul:last-of-type li:nth-last-child(-n+2) {
background:aqua;
}

jsFiddle here

使用选择器的组合 - :last-of-type:nth-last-child .

注意 - 这是 not fully supported IE8 及以下版本。

关于javascript - 最后一个 child 的最后一个 child 的风格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18965013/

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