CSS 选择器

table tbody td:first-child {
    text-align: left;
}
.table tbody tr td + td {
    text-align: center;
}
table tbody tr:nth-child(even) {
    background-color: #333;
}

原文地址:https://www.cnblogs.com/zhangwei595806165/p/3519192.html