下記のCSSで、テーブルの1,4,5カラム目を右寄せにできる。一番右の列は(0)ではなく(1)であることに注意。
td:nth-of-type(1),
td:nth-of-type(4),
td:nth-of-type(5) {
text-align:right;
}
関連記事
下記のCSSで、テーブルの1,4,5カラム目を右寄せにできる。一番右の列は(0)ではなく(1)であることに注意。
td:nth-of-type(1),
td:nth-of-type(4),
td:nth-of-type(5) {
text-align:right;
}