最新的Web开发教程
 

HTML <area> shape Attribute

<HTML <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>
试一试»

定义和用法

shape属性指定的区域的形状。

shape与属性一起使用coords属性来指定的大小,形状,和一个区域的位置。


浏览器支持

属性
shape Yes Yes Yes Yes Yes

HTML 4.01和HTML5之间的差异

没有。


句法

<area shape="default|rect|circle|poly">

属性值

描述
default 指定整个区域
rect 定义一个矩形区域
circle 定义一个圆形区域
poly 定义一个多边形区域

<HTML <area>标签