Skip to content

Instantly share code, notes, and snippets.

@imikay
Last active December 25, 2015 10:11
Show Gist options
  • Save imikay/c90ebb002e572215ee40 to your computer and use it in GitHub Desktop.
Save imikay/c90ebb002e572215ee40 to your computer and use it in GitHub Desktop.
IE 7
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