Created
October 29, 2016 02:04
-
-
Save geminorum/24bf75978075845d0b0f394abf27e3f4 to your computer and use it in GitHub Desktop.
sass sound/ceil/floor
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
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