HTML coords 属性
定义和用法
The coords
属性指定图像地图中区域的坐标。
The coords
属性与 shape
属性一起使用,以指定区域的大小、形状和放置位置。
提示: 区域左上角的坐标为 0,0。
适用于
The coords
属性可以在以下元素上使用
元素 | 属性 |
---|---|
<area> | coords |
示例
区域示例
一个带有可点击区域的图像地图
<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>
亲自试一试 »
浏览器支持
属性 | |||||
---|---|---|---|---|---|
coords | 是 | 是 | 是 | 是 | 是 |