Skip to content

Instantly share code, notes, and snippets.

@fernandofuly
Created September 23, 2014 20:31
Show Gist options
  • Save fernandofuly/7bf6db8c7d3c84f0a167 to your computer and use it in GitHub Desktop.
Save fernandofuly/7bf6db8c7d3c84f0a167 to your computer and use it in GitHub Desktop.
Fix the ie7 and inline-block css bug
// Original CSS:
.content .pager li {
display: inline-block;
}
// Fixed CSS:
.content .pager li {
display: inline-block;
zoom: 1;
*display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment