Skip to content

Instantly share code, notes, and snippets.

@gbissett
Created November 9, 2009 05:08
Show Gist options
  • Save gbissett/229707 to your computer and use it in GitHub Desktop.
Save gbissett/229707 to your computer and use it in GitHub Desktop.
whitey:dev grant$ cat test.sass
= vendor_attribute(!attribute, !value)
:-webkit-#{!attribute} #{!value}
:-moz-#{!attribute} #{!value}
:-o-#{!attribute} #{!value}
:#{!attribute} #{!value}
h1
+vendor_attribute("box-shadow", "1px 1px 1px red")
whitey:dev grant$ sass test.sass
h1 {
-webkit-box-shadow: 1px 1px 1px red;
-moz-box-shadow: 1px 1px 1px red;
-o-box-shadow: 1px 1px 1px red;
box-shadow: 1px 1px 1px red; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment