Komentáře CSS


Obsah

    Zobrazit obsah


Komentáře CSS se v prohlížeči nezobrazují, ale mohou pomozte zdokumentovat váš zdrojový kód.


Komentáře CSS

Komentáře se používají k vysvětlení kódu a mohou pomoci při pozdější úpravě zdrojového kódu.

Prohlížeče komentáře ignorují.

Komentář CSS je umístěn do prvku <style> a začíná /* a končí */:

Příklad

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

Zkuste to sami →

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


Komentáře můžete přidávat kamkoli do kódu:

Příklad

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

Zkuste to sami →

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


Komentáře mohou také zahrnovat více řádků:

Příklad

 /* This is
a multi-line
comment */

p
{
   
color: red;
}

Zkuste to sami →

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




Komentáře HTML a CSS

Z výukového programu HTML jste se naučili, že můžete ke svému zdroji HTML přidávat komentáře pomocí syntaxe.

V následujícím příkladu používáme kombinaci komentářů HTML a CSS:

Příklad

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

Zkuste to sami →

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