본문 바로가기

웹 프로그래밍/CSS

[CSS] 테이블의 홀수 또는 짝수번째 행마다 CSS 적용하기

tr:nth-child(odd) {
	background-color: #F7F9FC;
}
tr:nth-child(even) {
	background-color: #F7F9FC;
}