スタイルシートのコメント

動作ブラウザ 【 IE:3.0  NN:4.0  Safari:1.0】 ■CSSバージョン【1】
Internet Explorer Netscape Navigator Opera iCab Safari
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 7.0 7.x 2.x 1.x
Windows - × × - -
Macintosh × - - × × ×
UNIX - - - - - - × × - -

ポイント /* 〜 */
説  明 スタイルシートのコメントは/*と*/で囲みます。
サンプル <html>
<head>
<title>コメント</title>
<style type="text/css"><!--
h1 { font-size:14pt;
color:red;
/* background-color:#e0e0ff; */
width:320px;
}
.mainBody {
/* background-color:#eef; */
border:1px solid gray;
width:320px;
}
--></style>
</head>
<body>
<h1>スタイルシートのコメント</h1>
<div class="mainBody">
 スタイルシートを使ってページの見た目(装飾)を設定します。
</div>
</body>
</html>
補足説明 なし

■サンプルを実行する >>実行
■各ブラウザでの動作結果を見る >>View!