HTML <area> coords Attribut

❮ HTML <area>-Tag

Beispiel

Verwenden Sie das Attribut coords, um die Koordinaten jedes Bereichs in der Imagemap anzugeben:

<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>

Definition und Verwendung

Das coordsAttribut gibt die Koordinaten eines Bereichs in einer Imagemap an.

Das coordsAttribut wird zusammen mit dem shapeAttribut verwendet, um die Größe, Form und Platzierung eines Bereichs anzugeben.

Tipp: Die Koordinaten der oberen linken Ecke einer Fläche sind 0,0.


Browser-Unterstützung

Attribute
coords Yes Yes Yes Yes Yes

Syntax

<area coords="value">

Attributwerte

Value Description
x1,y1,x2,y2 Specifies the coordinates of the top-left and bottom-right corner of the rectangle (shape="rect")
x,y,radius Specifies the coordinates of the circle center and the radius (shape="circle")
x1,y1,x2,y2,..,xn,yn Specifies the coordinates of the edges of the polygon. If the first and last coordinate pairs are not the same, the browser will add the last coordinate pair to close the polygon (shape="poly")

❮ HTML <area>-Tag