comment

書式

<comment>〜</comment>

属性

属性名 初期値 内 容
なし なし なし

対応

Microsoft (MSDN)
[IE3〜]

説明

Internet Explorerでのコメント(注釈)を示します。Internet Explorerのみ動作します。特殊な場合を除いて通常のコメントである<!-- -->を使用するようにしてください。

関連タグ

<!-- -->

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<p>
コメントはページ上には表示されません。<br>
<comment>ここはIEでは表示されません</comment>
</p>
</body>
</html>