HTML スタイルにコメントを追加しようとしていますが、コメントを追加するとスタイルが機能しなくなります。
以下は問題なく動作します。アイコンとテキストは灰色で表示されます。
<html lang="en">
<head>
<title>test</title>
<link href="/gtd/media/css/font-awesome.css" rel="stylesheet">
</head>
<body>
<style>
.action-star {
color: gray;
}
</style>
<div class="container-fluid">
<span class="action-star"><i class="icon-star icon-large"></i> Test Icon</span>
</div><!--/container-->
</body>
</html>
ただし、以下は機能しません。アイコンとテキストは黒で表示されます。
<html lang="en">
<head>
<title>test</title>
<link href="/gtd/media/css/font-awesome.css" rel="stylesheet">
</head>
<body>
<style>
<!-- Comment -->
.action-star {
color: gray;
}
</style>
<div class="container-fluid">
<span class="action-star"><i class="icon-star icon-large"></i> Test Icon</span>
</div><!--/container-->
</body>
</html>
私が追加したのは次の行だけでした:
<!-- Comment -->
明らかな何かが欠けているに違いありません。. .