xxxxxxxxxx
/* CSS comment
any line */
<!-- HTML comment
any line -->
// Javascript comment single line
/* Javascript comment
multiline */
xxxxxxxxxx
/* This is a CSS comment! */
/* Remember that you have to add the end bit on comments or all your
code will turn to comments! Thease comments can go over several lines! */
xxxxxxxxxx
// Do some stuff {}
.foo { animation: bar 1s infinite; }
/* Success! */
xxxxxxxxxx
/* Wrap your CSS comments like this */
/*
You can also do something like this
for multi-line comments...
*/
/*************************
** Or You Can Get Fancy **
**************************
- Fancy point 1
- Fancy point 2
*/
xxxxxxxxxx
/*short comment*/
/*loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong comment*/
/*
multiple
line
comment
*/
/*Comments won't be shown on the page or effect the code but will remain in website code. Useful for commenting the purpose of the code*/