如果表格有多行,我想添加底部边框线。如果表格只有一行,那么应该隐藏底部边框。请指导我如何完成此操作。请参见下面的示例图片。
最佳答案
您可以使用@cc所说的last-of-type
或last-child
,例如此处
table tr td {
border-bottom: 1px solid #f00;
}
table tr:last-of-type td {
border-bottom: 0;
}
Demo
如果表格有多行,我想添加底部边框线。如果表格只有一行,那么应该隐藏底部边框。请指导我如何完成此操作。请参见下面的示例图片。
最佳答案
您可以使用@cc所说的last-of-type
或last-child
,例如此处
table tr td {
border-bottom: 1px solid #f00;
}
table tr:last-of-type td {
border-bottom: 0;
}