Created
July 24, 2012 10:49
-
-
Save 2dpi/3169358 to your computer and use it in GitHub Desktop.
CSS Equal % Widths Cross Browser
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
/* to fix bug in chrome rendering 1px less than Firefox */ | |
.wide_third { | |
max-width: 33.334%; | |
min-width: 33.333%; | |
/* IE conditional */ | |
=width: 33.333%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment