Wii OperaブラウザのCSS3をチェックしていて、
“:nth-last-child()”が動かないから、CSS3.infoの「CSS Selectors test」やってみた。
» CSS Selectors test-suite - CSS3 . info
完全に個人的な備忘録。
- パスしたセレクタ。
-
- *
- E
- .class
- #id
- E F
- E > F
- E + F
- E[attribute]
- E[attribute=value]
- E[attribute~=value]
- E[attribute|=value]
- :first-child
- :link
- :visited
- :lang()
- :before
- ::before
- :after
- ::after
- :first-letter
- ::first-letter
- :first-line
- ::first-line
- E[attribute^=value]
- E[attribute$=value]
- E[attribute*=value]
- E ~ F
- :root
- バグとなったモノ
-
- :last-child
- :only-child
- :nth-last-child()
- :first-of-type
- :last-of-type
- :only-of-type
- :nth-last-of-type()
- :empty
- :not()
- :target
- :enabled
- :disabled
- :checked
- サポートされていないモノ
-
- :nth-child()
- :nth-of-type()
あれ、“:nth-child()”この間つかったら使えてた気がしたんだけどなー