Created
October 14, 2012 14:57
-
-
Save monkyz/3888840 to your computer and use it in GitHub Desktop.
questions about stylus
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
if i have this: | |
body { | |
font: 14px/1.5 Helvetica, arial, sans-serif; | |
#logo { | |
border-radius: 5px; | |
} | |
} | |
would be the same as | |
body { | |
font: 14px/1.5 Helvetica, arial, sans-serif; | |
#logo { | |
border-radius: 5px; | |
} | |
} | |
does indentation affect when normal css is used? | |
answer:no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment