Created
September 9, 2013 07:48
-
-
Save vdchristelle/6492607 to your computer and use it in GitHub Desktop.
Chrome bug fix (page moving up and down a few pics on slide)
Put this CSS on any element of your page e.g. content
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
| /*Chrome bug fix (page moving up and down a few pics on slide) */ | |
| #content { | |
| -webkit-transform: rotate(0deg); /* WebKit */ | |
| -moz-transform: rotate(0deg); /* Mozilla */ | |
| -o-transform: rotate(0deg); /* Opera */ | |
| -ms-transform: rotate(0deg); /* Internet Explorer */ | |
| transform: rotate(0deg); /* CSS3 */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment