CSS
commentaires
Recherche…
Syntaxe
- / * Commentaire * /
Remarques
- Les commentaires en CSS commencent toujours par
/*
et se terminent par*/
- Les commentaires ne peuvent pas être imbriqués
Une seule ligne
/* This is a CSS comment */
div {
color: red; /* This is a CSS comment */
}
Ligne multiple
/*
This
is
a
CSS
comment
*/
div {
color: red;
}
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow