<!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: green; } | |
/* 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="two"> | |
This line should be green. | |
</p> | |
<p class="four"> | |
This line should be green. | |
</p> | |
</body> | |
</html> |