Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. dotLess - mixin with selector beginning with tag name
  2. .base-button-style
  3. {
  4.     ...
  5. }
  6.  
  7. .specific-button-style
  8. {
  9.     .base-button-style;  //mixin
  10.     ...
  11. }
  12.        
  13. input.base-button-style
  14. {
  15.     ...
  16. }
  17.        
  18. input.base-button-style
  19. {
  20.     ...
  21. }
  22.  
  23. .specific-button-style
  24. {
  25.     input.base-button-style;
  26.     ...
  27. }