blob: 81e48974ec65111f040cea3ab0d5f9c81059c3bc [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: Comments</title>
<style type="text/css">
body { color: red; }
/* This is a CSS comment. */
.one {color: green;} /* Another comment */
/* The following should not be used:
.two {color: red;} */
.three {color: green; /* color: red; */}
/**
.four {color: red;} */
.five {color: green;}
/**/
.six {color: green;}
/*********/
.seven {color: green;}
/* a comment **/
.eight {color: green;}
</style>
<link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#comments" title="4.1.9 Comments">
</head>
<body>
<p class="one">
This line should be green.
</p>
<p class="three">
This line should be green.
</p>
<p class="five">
This line should be green.
</p>
<p class="six">
This line should be green.
</p>
<p class="seven">
This line should be green.
</p>
<p class="eight">
This line should be green.
</p>
</body>
</html>