1. 代码
先使用css的:not选择器,排除表格第一行,再使用:nth-child()选择器选中表格的第二列
/* 设置除了表头列的第二列都有下划线 */
.TreeGrid tr:not(:first-child) td:nth-child(2) {
text-decoration: underline;
}
2024-01-29 21:09:27
先使用css的:not选择器,排除表格第一行,再使用:nth-child()选择器选中表格的第二列
/* 设置除了表头列的第二列都有下划线 */
.TreeGrid tr:not(:first-child) td:nth-child(2) {
text-decoration: underline;
}