CSS Comments
CSS Comments
Comments
CSS Comments
• CSS comments are not displayed in the browser, but they can help
document your source code.
CSS Comments
• Comments are used to explain the code, and may help when you edit the
source code at a later date.
<p>Hello World!</p>
<p>This paragraph is styled with CSS.</p>
<p>CSS comments are not shown in the output.</p>
</body>
</html>
• You can add comments wherever you want in the code:
• From the HTML tutorial, you learned that you can add comments to your
HTML source by using the <!--...--> syntax.
<!DOCTYPE html>
<html>
<head>
<style>
/* This is a single-line comment */
p {
color: red;
}
</style>
</head>
<body>
</body>
</html>