HTML <comment > and <!--....--> Tag



Description

Die HTML <comment> Tag ermöglicht Autoren, ihre HTML-Code zu kommentieren. Dieser Tag wird Unterstützt von IE nur.

Es wird empfohlen, zu verwenden<!--....--> Dieser Tag ist kompatibel zu allen Browsern.

Beispiel

<!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>

Dies wird folgendes Ergebnis produzieren:

This is a commented line in IE

Browser -Unterstützung

Browser -Unterstützung für<Kommentar> tag

ChromeFirefoxIEOperaSafariAndroid
nicht Unterstützungnicht Unterstützungjanicht Unterstützungnicht Unterstützungnicht Unterstützung

Browser -Unterstützung für <!--...--> tag

ChromeFirefoxIEOperaSafariAndroid
jajajajajaja
html_tags_reference.htm
Advertisements