Il tag HTML <comment> e <!--....-->


Descrizione

Il tag HTML <comment> permette agli autori di inserire commenti all' interno del codice HTML. Questo tag è supportato solo da IE.

It is recommended to use <!--....--> to comment your tags. This tag is compatible to all browsers.

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>

Produrrà il seguente risultato:

This is a commented line in IE

Compatibilità Browser

Compatibilità Browser per il tag <comment>

ChromeFirefoxIEOperaSafariAndroid
Non SupportatoNon SupportatoSiNon SupportatoNon SupportatoNon Supportato

Compatibilità Browser per il tag <!--...-->

ChromeFirefoxIEOperaSafariAndroid
SiSiSiSiSiSi
html_tags_reference.htm
Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements