gpt4 book ai didi

jquery - Nth-child 应用于每个按钮

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

我正在尝试使用以下 css 在每个其他按钮上执行不同的样式:

tr td:nth-child(odd) button {
background-color: red;
}

但是,每个按钮都是红色的,并且它们都具有相同的 tr td:nth-child(odd) button {} 样式。这些按钮是在 g:each 语句中“创建”的:

<table class="table table-striped">
<g:each in="${exactMatches}">
<tr>
<td>
<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#modal${it.id}">
${it.name}
</button>
.
. more stuff that appears in modal...
.
</td>
</tr>

最佳答案

看起来你的所有按钮都在一个 TD 中,所以你需要将你的 css 更改为:

tr td button:nth-child(odd) {
background-color: red;
}

关于jquery - Nth-child 应用于每个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26514795/

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