Answers for "how to comment in css"

CSS
3

comment tags

<!-- This is how you do an HTML comment tag -->
 /* This is how you do a comment in the css STYLE section */
 // this is how you do a comment in javascript and php
 # This is a comment in Python
Posted by: Guest on December-10-2020
11

comment out css inline

/* this is some commented out css
.my-field{
   font-size:10px;
   border:1px solid red;
}
*/
Posted by: Guest on August-21-2019
19

comments in css

/*comment here*/
Posted by: Guest on September-10-2020
37

css comment

/* 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! */
Posted by: Guest on June-21-2020
10

css add comment

/* This is a comment for heading styles */
h1 {
  color: red;
}
Posted by: Guest on March-07-2021
0

how to comment in css

/*This is a CSS comment*/

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

Browse Popular Code Answers by Language