테이블 행의 색상 골고루 설정

기여·2024년 5월 24일
0

소소한 개발팁

목록 보기
23/103

html에서 색상 적용할 모든 tr에 class 지정

<tr class=tr_color>

css:

.tr_color:nth-child(odd){
	background-color: #d7d7d7;
}
.tr_color:nth-child(even){
	background-color: #e8e8e8;
}

결과:

profile
기기 좋아하는 여자

0개의 댓글