Skip to content

Instantly share code, notes, and snippets.

@vdchristelle
Created September 9, 2013 07:48
Show Gist options
  • Select an option

  • Save vdchristelle/6492607 to your computer and use it in GitHub Desktop.

Select an option

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
/*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