Skip to content

Instantly share code, notes, and snippets.

@cssmagic
Last active December 24, 2015 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cssmagic/d7f5c23c436b01b24332 to your computer and use it in GitHub Desktop.
Save cssmagic/d7f5c23c436b01b24332 to your computer and use it in GitHub Desktop.
`border 0` vs `border none`
#a
border 0 // => border 0 none
&.class1
border-style solid // => border 0 solid
&.class2
border 3px // => border 3px none
#b
border none // => border medium none
&.class1
border-style solid // => border medium solid
&.class2
border solid // => border medium solid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment