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.

Type selectors

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

개요

CSS 타입 선택자는 노드 이름으로 요소를 찾습니다. 그러므로 (혼자 쓰였을 경우) 문서 내에서 해당 노드 이름을 가진 모든 요소를 선택하게 됩니다.

문법

element { style properties }

예제

CSS

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

HTML

<span>Here's a span with some text.</span>
<p>Here's a p with some text.</p>
<span>Here's a span with more text.</span>

결과

명세

Specification Status Comment
Selectors Level 4
The definition of 'Type (tag name) selector' in that specification.
Working Draft No change
Selectors Level 3
The definition of 'type selectors' in that specification.
Recommendation No change
CSS Level 2 (Revision 1)
The definition of 'type selectors' in that specification.
Recommendation  
CSS Level 1
The definition of 'type selectors' in that specification.
Recommendation Initial definition

브라우저 호환성

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? ? ? ? ? ?

문서 태그 및 공헌자

 이 페이지의 공헌자: pelly_ryu
 최종 변경: pelly_ryu,