블로그 이미지
푸른_바람

Rss feed Tistory
IT/HTML+JS+CSS+ 2010/08/11 08:30

CSS odd & even rules

Web Style Sheets
CSS tips & tricks

[code css]
tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
[/code]


[code css]
col:first-child {background: #FF0}
col:nth-child(2n+3) {background: #CCC}
[/code]

IE는 아직 안된다는... :(
TOTAL 245,652 TODAY 19