front/HTML, CSS

[CSS] 일,월에만 다른 색깔 :: td:nth-child(7n)

배고파요 2023. 12. 19. 16:43
728x90

// 일요일
table tr:mth-child(7n+1) td:first-child{color:red;}

// 토요일
table tr:mth-child(7n) td:first-child{color:blue;}



https://equality37.tistory.com/m/11

728x90