gpt4 book ai didi

html - 第一个 child 中间的边框 td

转载 作者:太空宇宙 更新时间:2023-11-03 21:30:08 25 4
gpt4 key购买 nike

如何只在中间(第一个 child )设置边框?

像这样:

1 | 2 | 3

代码:

.table {
width:50%;
}

.table table{
border-collapse: collapse;
width:100%;
height:100%;
}

.table td{
color: #000000;
font-size: 12px;
line-height: 16px;
margin-bottom: 6px;
font-family: Arial,Helvetica,sans-serif;
}

.table tr:nth-child(odd) { background-color:#EFEFEF; }
.table tr:nth-child(even) { background-color:#ffffff; }

.table tr:first-child td{
background-color:#EFEFEF;
text-align:left;
color:#868686;
font-size: 12px;
font-family: Arial,Helvetica,sans-serif;
line-height: 16px;
margin-bottom: 6px;
}

我希望有人能提供帮助,在此先感谢。

最佳答案

您可以将 :not() 选择器用于第一个/最后一个 tdborder-left/right css 属性:

.table tr:first-child td:not(:last-child) { border-right: 1px solid black}

JSFiddle

关于html - 第一个 child 中间的边框 td,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29937802/

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