我有以下css代码在所有td
上设置边框:
table td {
border-bottom: 1px dotted #706E6D;
direction: rtl;
line-height: 30px;
vertical-align: middle;
}
我想将border:none;
设置为最后一个tr(这可能有td
)。
table tr:last-child {
border: none;
}
答案 0 :(得分:2)
答案 1 :(得分:1)
我假设您希望最后一行中的所有表格单元格没有边框。将您的CSS规则更改为:
table tr:last-child td {
border: none;
}