Posts /

HTML: < area > 태그

Twitter Facebook Google+
21 Sep 2018

HTML Tag : <area> 태그

<img src="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>


area 태그란?

area 태그는 이미지 맵 내부의 영역을 정의합니다 (이미지 맵은 클릭 가능한 영역이있는 이미지입니다).

area 요소는 항상 map 태그 안에 중첩되어 있습니다.

img 태그 의 usemap 속성 은 map 요소의 name 속성과 연결되어 있으며 이미지와 맵 사이에 관계를 만듭니다.

속성


Twitter Facebook Google+