| |
Description
| |
The coords attribute is used to indicate the (x,y) coordinates of the area of
the image map you are describing. If the shape is a rectangle,
the coordinates should be upper-left, lower-right, respectively. If the shape is
a circle, the coordinates should be center-x, center-y, radius, respectively. If the
shape is an irregular polygon, the coordinates should be x1,y1, x2,y2...
|
Code
| |
<area shape="rect" coords="20,12,40,24"></area>
|
|