Group Style Block


/ Published in: CSS
Save to your folder(s)

Nicely group your CSS style blocks. CSSEdit (http://macrabbit.com/cssedit/) friendly.


Copy this code and paste it in your HTML
  1. /* @group My Group Name Here */
  2.  
  3. .my-group-selector {
  4. font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
  5. font-size: 13px;
  6. line-height: 18px;
  7. color: #666;
  8. }
  9.  
  10. .my-other-group-selector {
  11. width: 200px;
  12. display: block;
  13. }
  14.  
  15. /* @end */

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.