|
To make updating a site easier in the future, use comments in your css to define what the particular css does.
Comments look like this /* text */
Comments are typically used to identify an IE Bug Fix but can be used as notes or reminders as well.
For instance, keeping track of css for different elements of a page:
/* use this code for all products for men*/ .productname { font: bold 14px Arial, Helvetica, sans-serif; color: #333333; }
or
.redtext { color: #FF0000; /* Use this for all sale items */ }
|