HTML / CSS

【table】表の1列目を「ブルー」2列目を「ピンク」の背景色に【css】

/* 1列目 */
table tr td:nth-of-type(1){
  background-color:blue;
}

/* 2列目 */
table tr td:nth-of-type(2){
  background-color:pink;
}