HTML - <commento> e <! --....--> Tag
Descrizione
Il tag HTML <comment> consente agli autori di commentare il proprio codice HTML. Questo tag è supportato solo da IE.
Si consiglia di utilizzare <! --....--> per commentare i tag. Questo tag è compatibile con tutti i browser.
Note- Il tag <comment> obsoleto in HTML5. Non utilizzare questo elemento.
Esempio
<!DOCTYPE html>
<html>
<head>
<title>HTML <!--....--> Tag</title>
</head>
<body>
<comment>This is a commented line in IE</comment>
<!-- This is a commented line supported by almost every browser.
It will not appear in output as its a comment.
-->
</body>
</html>
Questo produrrà il seguente risultato:
Supporto browser
Supporto del browser per il tag <commento>
Cromo | Firefox | IE | musica lirica | Safari | Android |
---|---|---|---|---|---|
Non supportato | Non supportato | sì | Non supportato | Non supportato | Non supportato |
Supporto del browser per il tag <! --...-->
Cromo | Firefox | IE | musica lirica | Safari | Android |
---|---|---|---|---|---|
sì | sì | sì | sì | sì | sì |