Created
September 23, 2014 20:31
-
-
Save fernandofuly/7bf6db8c7d3c84f0a167 to your computer and use it in GitHub Desktop.
Fix the ie7 and inline-block css bug
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
// 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