usar child

tr.tabs td:nth-child(10) { display: none; }

p:nth-child(odd) {
    background: red;
}

p:nth-child(even) {
    background: blue;
}

p:nth-child(3n+0) {
    background: red;
}