| Previous | Home | Next |
We use comments to explain our code, and may help you when you edit the source code at a later date. Comments are ignored by browsers.Comments can be write in CSS as following manner
/*This is first comment*/
p
{
text-align:center;
/*This is another comment*/
color:black;
font-family:arial;
}
A CSS comment begins with "/*", and ends with "*/", like above code.
| Previous | Home | Next |