gpt4 book ai didi

html - 如何使用表 tr :odd td in html

转载 作者:搜寻专家 更新时间:2023-10-31 21:54:12 24 4
gpt4 key购买 nike

当我在 HTML 中定义这个 CSS 时,我发现它们甚至在 Firebug 中也没有显示,但我在编辑按钮后看到了 Firebug CSS 面板 [tab]

#tbl tr:odd td{
background: none repeat scroll 0 0 #FFFFFF;
}

好吧,我想将 tr 的背景色设为 #FFF

最佳答案

根据 CSS3 , evenodd 实际上是 :nth-child() 的参数伪类,本身不是选择器。尝试:

#tbl tr:nth-child(odd) td {
background: none repeat scroll 0 0 #FFFFFF;
}

当然,您的浏览器必须支持 CSS3 才能使上述功能正常工作。

关于html - 如何使用表 tr :odd td in html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4977008/

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