最新的Web開發教程
 

HTML <a> shape Attribute

<HTML <a>標籤

在使用shapecoords屬性在<a>元素,創建圖像映射:

<object data="planets.gif" alt="Planets" type="image/gif" usemap="#Map1">
  <map name="Map1">
  <a href="sun.htm" shape="rect" coords="0,0,82,126">The Sun</a>
  <a href="mercur.htm"shape="circle" coords="90,58,3">Mercury</a>
  <a href="venus.htm" shape="circle" coords="124,58,8">Venus</a>
  </map>
</object>
試一試»

定義和用法

<a> shape屬性不是HTML5的支持。

shape與屬性一起使用coords屬性來指定在一個在大小,形狀,和鏈路放置<object><img>的元素。

提示:要創建圖像映射在所有瀏覽器的工作原理,使用<area>元素!


瀏覽器支持

屬性
shape 不支持 不支持 不支持

句法

<a shape="value">

屬性值

描述
default 指定整個區域
rect 定義一個矩形區域
circle 定義一個圓形區域
poly 定義一個多邊形區域

<HTML <a>標籤