Just do IT

思うは招く

CSS で何番目以降を指定する方法

たとえば、tableというクラス直下のtd要素の2番目以降をtext-align: center;にしたいとき。

.table td:nth-child(n+2) {
  text-align: center;
}