Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

要素型セレクタ

概要

CSS の要素型セレクタは、ノード名により要素にマッチします。したがって、単体で使用した場合、ある特定のノード名の要素型セレクタは、文書内におけるその型(そのノード名を持つ、という意味で)の、すべての要素を選択します。

構文

element { style properties }

CSS

span {
  background-color: DodgerBlue;
  color: #ffffff;
}

HTML

  <span>テキストを伴った span 要素です。</span>
  <p>テキストを伴った p 要素です。</p>

結果

テキストを伴った span 要素です。
テキストを伴った p 要素です。

仕様

仕様 状態 コメント
CSS Selectors Level 3 勧告 変更無し
CSS 2.1 勧告  
CSS 1 勧告  

ブラウザの互換性

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本的なサポート (有) (有) (有) (有) (有)
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本的なサポート ? ? ? ? ? ?

参照

  • ---

ドキュメントのタグと貢献者

 このページの貢献者: ethertank, sii
 最終更新者: ethertank,