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

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.17 KB  |  hits: 12  |  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. Implementing CSS variables in HTML page
  2. :root {
  3.     var-main-background: #f00;
  4.     var-main-color: #111;
  5. }
  6. h1 {
  7.     background: $main-background;
  8.     color: $main-color;
  9. }