window Resize

html 測試 左入右出

html 測試 上入下出

html 測試 單入單出

html 測試 左單右單

tt
顯示具有 CSS nth-child 偶奇數規則 標籤的文章。 顯示所有文章
顯示具有 CSS nth-child 偶奇數規則 標籤的文章。 顯示所有文章

偶數與奇數規則 CSS :nth-child(even) :nth-child(odd)

偶數與奇數規則 CSS :nth-child(even) :nth-child(odd)

一種提高易於閱讀大型表格的方法是每,排以色調交替譬如,下面的 table 顯示淺灰色背景的 偶數排,以及白底的奇數排,這規則在此非常簡單。
table:nth-child(even) {background: #CCC}
table:nth-child(odd) {background: #FFF}
00