Programming Code Center(PCC)
[CSS]

(PCC)::[how-to-use-multi-line-comment-in-css]::[css]

File Name : index.html

<!DOCTYPE html>
<html>
<head>
<style>
/* This is
a multi-line
comment */

p {
  color: red;
} 
</style>
</head>
<body>

<p>Hello World!</p>
<p>This paragraph is styled with CSS.</p>
<p>CSS comments are not shown in the output.</p>

</body>
</html>

Output :

Hello World!

This paragraph is styled with CSS.

CSS comments are not shown in the output.