Los comentarios inician con
/*
y terminan con
*/
.
Pueden ocupar más de un renglón.
Se colocan dentro de un elemento
style
.
1 | <style> |
2 | /* Comentario sobre h1. */ |
3 | h1 { |
4 | color: yellow; /*Sobre color.*/ |
5 | background-color: blue; |
6 | } |
7 | </style> |