Skip to content

Instantly share code, notes, and snippets.

@dominicmartineau
Created April 30, 2013 15:38
Show Gist options
  • Save dominicmartineau/5489523 to your computer and use it in GitHub Desktop.
Save dominicmartineau/5489523 to your computer and use it in GitHub Desktop.
To avoid Recess to rewrite 'calc' expression...
.classname {
height: calc(100% - 50px); # Not Ok (will be rewrite as 'calc(50%)')
height: calc(~"100% - 50px"); # Ok!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment