Answers for "how to write comments in css"

CSS
3

CSS comemnts

/* a css comment */
Posted by: Guest on September-22-2020
2

css comment

/* The only requirements for comments are 
slash star at the start and star slash at the end */

/*/ But i prefer writing comments with an extra slash cus it looks better /*/
Posted by: Guest on June-04-2021
0

css comment

/* CSS comment 
	any line */

<!-- HTML comment
 	any line -->

// Javascript comment single line
/* Javascript comment 
	multiline */
Posted by: Guest on April-19-2021
2

comment in css

/* There is just single way to comment in css and its just 
like this:
/* your comment content*/
Posted by: Guest on December-06-2020
1

Add a comment in css

/* Use the "/*" at the start and swap them at the end of your comment! Put your string into the argument.*/
Posted by: Guest on March-27-2021
0

how to comment in css

/*This is a CSS comment*/

/*Have a nice day!!! :)*/
Posted by: Guest on August-05-2021

Code answers related to "how to write comments in css"

Browse Popular Code Answers by Language