1/* this is some commented out css
2.my-field{
3 font-size:10px;
4 border:1px solid red;
5}
6*/
1/* This is a CSS comment! */
2/* Remember that you have to add the end bit on comments or all your
3code will turn to comments! Thease comments can go over several lines! */
1/* The only requirements for comments are
2slash star at the start and star slash at the end */
3
4/*/ But i prefer writing comments with an extra slash cus it looks better /*/
1/* Wrap your CSS comments like this */
2
3/*
4You can also do something like this
5for multi-line comments...
6*/
7
8/*************************
9** Or You Can Get Fancy **
10**************************
11 - Fancy point 1
12 - Fancy point 2
13*/
1/* CSS comment
2 any line */
3
4<!-- HTML comment
5 any line -->
6
7// Javascript comment single line
8/* Javascript comment
9 multiline */