--- title: slug: Web/HTML/Element/area tags: - Element - HTML - HTML embedded content - Reference - Web translation_of: Web/HTML/Element/area ---
HTML <area>
요소는 이미지의 핫스팟 영역을 정의하고 {{glossary("hyperlink", "하이퍼링크")}}를 추가할 수 있습니다. {{htmlelement("map")}} 요소 안에서만 사용할 수 있습니다.
콘텐츠 카테고리 | 플로우 콘텐츠, 구문 콘텐츠. |
---|---|
가능한 콘텐츠 | 없음. {{glossary("empty element", "빈 요소")}}입니다. |
태그 생략 | 여는 태그는 존재해야 하며 닫는 태그는 존재해선 안됩니다. |
가능한 부모 요소 | 구문 콘텐츠를 허용하는 모든 요소. 단, 조상 중 {{htmlelement("map")}} 요소가 존재해야 합니다. |
암시적 ARIA 역할 | {{htmlattrxref("href", "area")}} 특성이 존재하면 {{ariarole("link")}}, 그 외의 경우 대응하는 역할 없음 |
가능한 ARIA 역할 | 없음 |
DOM 인터페이스 | {{domxref("HTMLAreaElement")}} |
이 요소는 전역 특성을 포함합니다.
shape
특성의 값에 따라 달라집니다.rect
: 좌상단과 우하단을 나타내는 두 개의 x, y 쌍입니다.circle
: x,y,r
로서 x,y
는 원의 중심 좌표이며 r
은 반지름입니다.poly
: 다각형의 꼭지점을 나타내는 다수의 x, y 쌍(x1,y1,x2,y2,x3,y3,...
)입니다.<area>
하이퍼링크의 대상입니다. 유효한 URL이야 합니다. 생략할 경우, 이 <area>
요소는 하이퍼링크를 나타내지 않습니다.PING
으로 전송할 URL의 목록입니다. 공백으로 구분하며 주로 추적용으로 사용합니다."no-referrer"
meaning that the Referer:
header will not be sent.no-referrer-when-downgrade
" meaning that no Referer:
header will be sent when navigating to an origin without TLS (HTTPS). This is a user agent’s default behavior, if no policy is otherwise specified."origin"
meaning that the referrer will be the origin of the page, that is roughly the scheme, the host and the port."unsafe-url"
meaning that the referrer will include the origin and the path (but not the fragment, password, or username). This case is unsafe because it can leak origins and paths from TLS-protected resources to insecure origins.rect
, which defines a rectangular region; circle
, which defines a circular region; poly
, which defines a polygon; and default
, which indicates the entire region beyond any defined shapes. Many browsers, notably Internet Explorer 4 and higher, support circ
, polygon
, and rectangle
as valid values for shape; these values are {{Non-standard_inline}}._self
: 결과를 현재 HTML4 프레임 또는 HTML5 브라우징 컨텍스트에 로드합니다. 이 target 속성이 정의되어있지 않은경우 이 값이 기본값이 됩니다._blank
: 결과를 이름없는 새로운 HTML4 윈도우나 HTML5 브라우징 컨텍스트에 로드합니다._parent
: 결과를 현재 HTML4 프레임의 부모 프레임셋에 로드하거나 부모 HTML5 브라우징 컨텍스트에 로드합니다. 만약 부모가 없을 경우 _self와 동일하게 여겨집니다._top
: HTML4에서는, 다른 모든 프레임을 취소하고 결과를 꽉찬 본래의 윈도우에 로드합니다. HTML5에서는, 결과를 최상위 브라우징 컨텍스트에 로드합니다. 만약 부모가 없다면, 이 옵션은 _self와 같이 행동합니다.Note: Since HTML5, omitting the href
attribute is sufficient.
<map name="primary"> <area shape="circle" coords="200,250,25" href="another.htm" /> <area shape="default" nohref /> </map> <img usemap="#primary" src="http://placehold.it/350x150" alt="350 x 150 pic">
{{EmbedLiveSample('예제', 360, 160)}}
명세 | 상태 | 주석 |
---|---|---|
{{SpecName('Referrer Policy', '#referrer-policy-delivery-referrer-attribute', 'referrerpolicy attribute')}} | {{Spec2('Referrer Policy')}} | Added the referrerpolicy attribute. |
{{SpecName('HTML WHATWG', 'the-map-element.html#the-area-element', '<area>')}} | {{Spec2('HTML WHATWG')}} | |
{{SpecName('HTML5 W3C', 'embedded-content-0.html#the-area-element', '<area>')}} | {{Spec2('HTML5 W3C')}} | |
{{SpecName('HTML4.01', 'struct/objects.html#h-13.6.1', '<area>')}} | {{Spec2('HTML4.01')}} |
{{Compat("html.elements.area")}}