Skip to content

Instantly share code, notes, and snippets.

@caycefischer
Created December 7, 2011 07:44
Show Gist options
  • Save caycefischer/1441901 to your computer and use it in GitHub Desktop.
Save caycefischer/1441901 to your computer and use it in GitHub Desktop.
Proper column widths for elements with font-size !=1em in Frameless Grid
.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