Skip to content

Instantly share code, notes, and snippets.

@geminorum
Created October 29, 2016 02:04
Show Gist options
  • Save geminorum/24bf75978075845d0b0f394abf27e3f4 to your computer and use it in GitHub Desktop.
Save geminorum/24bf75978075845d0b0f394abf27e3f4 to your computer and use it in GitHub Desktop.
sass sound/ceil/floor
line-height: ceil(@height * .666); // 20px (round up)
line-height: floor(@height * .666); // 19px (round down)
line-height: round(@height * .666); // 20px (round to closest integer)
line-height: round(@height * .666, 1); // 20.0px (round to 1 decimal place)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment