我已经创建了表格,但在两个单元格相交的地方,边框较暗且较厚。我该如何解决此问题?这是我的CSS代码。
.custom-table-2 {
border-collapse: separate;
/*border-collapse: collapse;*/
border-spacing: 0;
}
.custom-table-2 td {
border: 1px solid #00953B;
}
.custom-table-2 tr:first-child td:first-child {
border: 0px;
}
.custom-table-2 tr:nth-child(2) td:first-child {
border-top-left-radius: 16px;
}
.custom-table-2 tr:first-child td:nth-child(2) {
border-top-left-radius: 16px;
}
.custom-table-2 tr:first-child td:last-child {
border-top-right-radius: 16px;
}
.custom-table-2 td:nth-child(2) {
background-color: #7CCB99;
}
字符串
Image of the table
如果我使用'border-collapse:折叠;',它不会变厚,但边界半径不会显示。有什么解决办法吗?
1条答案
按热度按时间dtcbnfnu1#
为
<td>
设置单独的边框,而不是速记:个字符