Guest User

Untitled

a guest
May 22nd, 2012
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. Sass - Setting variables with variables
  2. $colors = green, yellow, blue;
  3.  
  4. @each $c in $colors {
  5. &.#{$c} {
  6. border-color: $#{$c};
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment