Derniers tutoriels de développement web
 

HTML <area> nohref Attribute

<HTML <area> tag

Exemple

Une image-carte, avec des zones cliquables, et un nohref attribut:

<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>
Essayez - le vous - même »

Définition et utilisation

La <area> nohref attribut est pas pris en charge HTML5.

Le nohref attribut est un attribut booléen.

Lorsqu'il est présent, il spécifie que la zone n'a pas de lien associé.

Astuce: Le nohref attribut indique qu'un <area> n'a pas de lien associé.Vous pouvez plus facilement le faire en ne comprenant pas l'attribut href.


support du navigateur

Attribut
nohref Not supported Not supported Not supported Not supported Not supported

Différences entre HTML et XHTML

En XHTML, attribuer la minimisation est interdit, et l' nohref attribut doit être défini comme <area nohref="nohref" /> .


Syntaxe

<area nohref>

<HTML <area> tag