HTML: tag <map>
Descrizione
Il tag HTML <map> viene utilizzato per definire una mappa immagine insieme al tag <img>.
Esempio
<!DOCTYPE html>
<html>
<head>
<title>HTML map Tag</title>
</head>
<body>
<img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/>
<!-- Create Mappings -->
<map name = "html">
<area shape = "circle" coords = "154,150,59" href = "about/about_team.htm"
alt = "Team" target = "_self" />
</map>
</body>
</html>
Questo produrrà il seguente risultato, trova la mappa dell'immagine in basso a destra -
Attributi globali
Questo tag supporta tutti gli attributi globali descritti in - Riferimento agli attributi HTML
Attributi specifici
Il tag HTML <map> supporta anche i seguenti attributi aggiuntivi:
Attributo | Valore | Descrizione |
---|---|---|
nome | nome unico | Definisce un nome univoco per il tag della mappa. |
Attributi dell'evento
Questo tag supporta tutti gli attributi degli eventi descritti in - Riferimento agli eventi HTML
Supporto browser
Cromo | Firefox | IE | musica lirica | Safari | Android |
---|---|---|---|---|---|
sì | sì | sì | sì | sì | sì |