Created
December 7, 2011 07:44
-
-
Save caycefischer/1441901 to your computer and use it in GitHub Desktop.
Proper column widths for elements with font-size !=1em in Frameless Grid
This file contains 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
.element { | |
font-size: 1.5em; | |
max-width: @7cols; /* can't say this because the font-size skews the calculation */ | |
/* Basically, reverse the ratio to get the number back to 1em: (1 * 1.5 = 1.5), (1.5 * 0.66666666667 = 1) */ | |
max-width: (( 7 * (@column + @gutter) * 0.66666666667) - @gutter * 0.66666666667) / @em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment