ユニーバサルセレクタ
ユニーバサルセレクタは*(アスタリスク)を記述することによってすべてを検索するセレクタです。
*{
margin:0;
padding:0;
}
このサンプルではすべての要素のmarginとpaddingに0を設定しています。
#nav *{
margin:0;
padding:0;
}
このサンプルでは#nav内のすべての要素のmarginとpaddingに0を設定しています。
参考URL
登録日 : 2012年12月30日 最終更新日 : 2012年12月30日
同じカテゴリー(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
- 属性セレクタ
- 子孫セレクタ
- 要素セレクタ
- ユニーバサルセレクタ