HTML shape 属性
定义和用法
shape
属性指定区域的形状。
shape
属性与 coords
属性一起使用,以指定区域的大小、形状和位置。
适用范围
shape
属性可在以下元素上使用:
元素 | 属性 |
---|---|
<area> | shape |
示例
图像地图,带有可点击区域
<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 | 是 | 是 | 是 | 是 | 是 |