Created
November 9, 2009 05:08
-
-
Save gbissett/229707 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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