Last active
December 17, 2015 15:19
-
-
Save miratcan/5630638 to your computer and use it in GitHub Desktop.
rotate your web page 90 degree.
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
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