HMTL, CSS, JS, PHP & Co.
Tips, tricks and information about Website Programming....
Comments in CSS
Contrary to some publications, commenting with "//" at the beginning of the line in a CSS file does not work correctly. The next line is ignored. The "/* ... */" variant, on the other hand, works perfectly.
Does NOT work:
...
// My comment
...
Works perfectly:
...
/* Mein Kommentar */
...