현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.
개요
HTML Head 요소 (<head>) 는 문서의 제목과 스크립트,스타일 시트의 링크 또는 선언을 포함하는 문서의 일반적인 정보 (메타데이터)를 제공합니다
- 콘텐츠 범주 없음.
- 허용된 콘텐츠If the element is an
<iframe>
srcdoc
, or if title information is available from a higher level protocol, zero or more elements of metadata content.
Otherwise, one or more elements of metadata content where exactly one is a<title>
element. - 태그 생략 만약 head 요소 내 첫 번째 것이 요소라면, 시작 태그는 생략될 수 있습니다.
head 요소 바로 뒤의 것이 공백, 주석이 아니라면 종료 태그는 생략될 수 있습니다. - 허용된 부모 요소
<html>
요소의 첫번쨰 자식으로 - DOM 인터페이스
HTMLHeadElement
속성
이 요소는 전역 속성을 포함합니다
예제
<html> <head> <title>문서 제목</title> </head> </html>
참고
대부분의 브라우저들은 마크업에서 <head> 요소가 생략될경우, 자동으로 <head> 요소를 생성합니다. 하지만 일부는 그렇지 않습니다.
다음 브라우저들은 head 요소를 자동적으로 생성하지 않다고 테스트 되었습니다: Android <=1.6, iPhone <=3.1.3, Nokia 90, Opera <=9.27, Safari <=3.2.1.
사양
사양 | 상태 | 주석 |
---|---|---|
WHATWG HTML Living Standard The definition of '<head>' in that specification. |
Living Standard | |
HTML5 The definition of '<head>' in that specification. |
Recommendation | |
HTML 4.01 Specification The definition of '<head>' in that specification. |
Recommendation |
브라우저 호환성
기능 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 1.0 | (Yes) | (Yes) | (Yes) | (Yes) |
기능 | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |