Gli ultimi tutorial di sviluppo web
 

HTML <area> nohref Attribute

<HTML <area> tag

Esempio

Un'immagine-map, con aree cliccabili, e un nohref attributi:

<img src="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" nohref 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>
Prova tu stesso "

Definizione e utilizzo

Il <area> nohref attributo non è supportato in HTML5.

Il nohref attributo è un attributo booleano.

Quando è presente, specifica che una zona non ha collegamento associato.

Suggerimento: Il nohref attributo indica che un <area> non ha alcun collegamento associato.Si potrebbe più facilmente farlo, non includendo un attributo href.


Supporto per il browser

Attributo
nohref Not supported Not supported Not supported Not supported Not supported

Differenze tra HTML e XHTML

In XHTML, attribuiscono la minimizzazione è vietato, e il nohref attributo deve essere definito come <area nohref="nohref" /> .


Sintassi

<area nohref>

<HTML <area> tag