Last active
December 25, 2015 10:11
-
-
Save imikay/c90ebb002e572215ee40 to your computer and use it in GitHub Desktop.
IE 7
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
1. overflow: hidden only works on positioned elements. | |
2. display: inline-block; hack: | |
display: inline-block; | |
*display: inline; | |
*zoom: 1; | |
3. IE 7 float: right; drop to new line: | |
Try to small change markup: place items with a float before items without it (from the same row). It should help. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment