Skip to content

Instantly share code, notes, and snippets.

@monkyz
Created October 14, 2012 14:57
Show Gist options
  • Save monkyz/3888840 to your computer and use it in GitHub Desktop.
Save monkyz/3888840 to your computer and use it in GitHub Desktop.
questions about stylus
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