> I typically use this commenting style in places like global/button.css
> where I have a large block of styles related to the button, and several
> smaller blocks related to particular states like hover and active. It's
> better to have a more distince style for these comments so they stand out,
> while looking different from the ones that encompass all button styles.
I find the ideal way to work this in program code is to have all comments
the same style (I use:
/*************.... column 78 */
/* Foo bar */
/*****************************/
You then distinguish between comment scope by indenting. The most
important ones are, by definition, at outer scope and so not indented at
all.
This may not work so well for CSS files, though.
Gerv