Comentários CSS


Índice

    Mostrar índice


Os comentários CSS não são exibidos no navegador, mas podem ajude a documentar seu código-fonte.


Comentários CSS

Comentários são usados para explicar o código e podem ajudar quando você editar o código-fonte posteriormente.

Os comentários são ignorados pelos navegadores.

Um comentário CSS é colocado dentro do elemento <style> e começa com /* e termina com */:

Exemplo

 /* This is a single-line comment */
p
{
   
color: red;
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
/* This is a single-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>


Você pode adicionar comentários onde quiser no código:

Exemplo

   p
{
   
color: red; 
  /* Set text color to red */
}

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
p {
  color: red;  /* Set text color to 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>


Os comentários também podem abranger múltiplas linhas:

Exemplo

 /* This is
a multi-line
comment */

p
{
   
color: red;
}

Experimente você mesmo →

<!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>




Comentários HTML e CSS

No tutorial HTML, você aprendeu que pode adicionar comentários à sua fonte HTML usando o comando Sintaxe .

No exemplo a seguir, usamos uma combinação de comentários HTML e CSS:

Exemplo

 <!DOCTYPE html>
<html>
<head>
<style>
p {
  color: red; /* Set 
  text color to red */
} 
</style>
</head>
<body>
<h2>My 
  Heading</h2>
<!-- These paragraphs will be red -->
<p>Hello 
  World!</p>
<p>This paragraph is styled with CSS.</p>
<p>CSS comments are 
  not shown in the output.</p>
</body>
</html>

Experimente você mesmo →

<!DOCTYPE html>
<html>
<head>
<style>
p {
  color: red; /* Set text color to red */
}
</style>
</head>
<body>

<h2>My Heading</h2>

<!-- These paragraphs will be red -->
<p>Hello World!</p>
<p>This paragraph is styled with CSS.</p>
<p>HTML and CSS comments are not shown in the output.</p>

</body>
</html>