Skip to content

Instantly share code, notes, and snippets.

@miratcan
Last active December 17, 2015 15:19
Show Gist options
  • Save miratcan/5630638 to your computer and use it in GitHub Desktop.
Save miratcan/5630638 to your computer and use it in GitHub Desktop.
rotate your web page 90 degree.
var s = document.createElement('style');s.innerHTML = 'body {transform:rotate(90deg);-webkit-transform:rotate(90deg);}';document.getElementsByTagName('head')[0].appendChild(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment