How to write CSS Comments
Description
Comments are used to explain your code and they are ignored by browsers.
A CSS comment begins with "/*
", and ends with "*/
", like this:
/*This is a comment*/
p{//from w w w. j a v a2 s . c om
color:red;
text-align:center;
}
Example
The following code uses CSS comments in a html document.
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
/*This is a comment*/
p{<!-- ww w.ja va 2 s .co m-->
color:red;
text-align:center;
}
</style>
</head>
<body>
<p>Visit the website</p>
</body>
</html>
Example 2
We can even put comment among the declaration.
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
p{<!--from w ww . j a v a 2s . c om-->
color:red;
/*This is a comment*/
text-align:center;
}
</style>
</head>
<body>
<p>Visit the website</p>
</body>
</html>