Internet Explorer 8(IE8)で効かないcssプロパティ
* nth-child * nth-last-child * nth-of-type * nth-last-of-type * last-child * first-of-type * last-of-type * only-child * only-of-type
WPなど案件構築覚書
* nth-child * nth-last-child * nth-of-type * nth-last-of-type * last-child * first-of-type * last-of-type * only-child * only-of-type
html, address, blockquote, body, dd, div, dl, dt, fieldset, form, frame, frameset, h1, h2, h3, h4, h5, h6, noframes, ol, p, ul, center, dir, hr, menu, pre { display: block; unicode-bidi: embed } li { […]
■最初のみ li:first-child ■最後のみ li:last-child ■リストが1つだけの時に適応 li:only-child ■交互に変更 li:nth-child(2n) { /* 偶数番目(2,4,6……番目) */ color: red; } li:nth-child(2n+1) { /* 奇数番目(1,3,5……番目) */ color: green; } ■特定のリストを変 […]