gpt4 book ai didi

javascript - 将样式应用于表中第 n 个内的 div

转载 作者:行者123 更新时间:2023-11-28 08:53:55 25 4
gpt4 key购买 nike

这是我的 Fiddle

这里我需要将样式应用于给定 div 的第 n 个子元素下的值“Test”。

请注意,我不应该使用类,因为我正在使用 flexigrid。

我该怎么做?

这是我的风格

table, td, th {
border: 1px solid green;
}

th {
background-color: green;
color: white;
}
th:nth-child(2) {
background : red !important;
}

最佳答案

你的问题确实有点含糊。但是您不需要类来设置此数据表的样式。

行样式

tr:nth-child(2) {
背景:红色!重要;
}

列样式

td:nth-child(2) {
背景:红色!重要;
}

标题样式

th:nth-child(2) {
背景:红色!重要;
}

关于javascript - 将样式应用于表中第 n 个内的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27223755/

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