Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. HTML: Hypertext Markup Language
  3. HTML 참고서
  4. HTML 요소 참고서
  5. <map>

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

<map>

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015년 7월⁩.

HTML<map> 요소<area> 요소와 함께 이미지 맵(클릭 가능한 링크 영역)을 정의할 때 사용합니다.

시도해 보기

<map name="infographic">  <area    shape="poly"    coords="130,147,200,107,254,219,130,228"    href="https://developer.mozilla.org/docs/Web/HTML"    alt="HTML" />  <area    shape="poly"    coords="130,147,130,228,6,219,59,107"    href="https://developer.mozilla.org/docs/Web/CSS"    alt="CSS" />  <area    shape="poly"    coords="130,147,200,107,130,4,59,107"    href="https://developer.mozilla.org/docs/Web/JavaScript"    alt="JavaScript" /></map><img  usemap="#infographic"  src="/shared-assets/images/examples/mdn-info2.png"  alt="MDN infographic" />
img {  display: block;  margin: 0 auto;  width: 260px;  height: 232px;}
콘텐츠 카테고리플로우 콘텐츠,구문 콘텐츠, 뚜렷한 콘텐츠.
가능한 콘텐츠 모든투명한 콘텐츠.
태그 생략불가능, 시작과 끝에 태그를 추가하는 것은 필수입니다.
가능한 부모 요소구문 콘텐츠를 허용하는 모든 요소.
가능한 ARIA 역할없음
DOM 인터페이스HTMLMapElement

특성

이 요소는전역 특성을 포함합니다.

name

맵을 참조할 때 사용할 수 있는 이름. 반드시 존재해야 하고, 값이 비면 안되며, 값에 공백 문자가 포함되어도 안됩니다.name 특성은 문서 내의 모든<map>에서 유일해야 합니다.id 특성이 존재하는 경우name과 값이 동일해야 합니다.

예제

html
<map name="primary">  <area shape="circle" coords="75,75,75" href="left.html" />  <area shape="circle" coords="275,75,75" href="right.html" /></map><img usemap="#primary" src="https://placehold.it/350x150" alt="350 x 150 pic" />

결과

예상 결과

키보드의 탭을 눌렀을 때, 위의 예제는 아래 사진처럼 나와야 합니다.

left.html 링크:

right:html 링크:

명세

Specification
HTML
# the-map-element

브라우저 호환성

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp