:nth-of-type()
:nth-of-type(n) は兄弟要素で特定の要素のうちでn番目の要素を絞り込めるセレクタです。
dt:nth-of-type(1){/*1番目のdt要素*/}
dt:nth-of-type(5){/*5番目のdt要素*/}
:nth-child()との違いは全ての兄弟要素をカウントするか、特定の要素のみをカウントするかです。
参考URL
6.6.5.4. :nth-of-type() pseudo-class - W3C
登録日 : 2013年01月26日 最終更新日 : 2013年1月26日
同じカテゴリー(Selector)のエントリー
- 兄弟セレクタ
- 隣接セレクタ
- 子セレクタ
- :not()
- idセレクタ
- classセレクタ
- ::after
- ::before
- ::first-letter
- ::first-line
- :indeterminate
- :checked
- :disabled
- :enabled
- :lang()
- :target
- :focus
- :active
- :hover
- :visited
- :link
- :empty
- :only-of-type
- :only-child
- :last-of-type
- :first-of-type
- :last-child
- :first-child
- :nth-last-of-type()
- :nth-of-type()
- :nth-last-child()
- :nth-child()
- :root
- 属性セレクタ
- 子孫セレクタ
- 要素セレクタ
- ユニーバサルセレクタ