Created
May 29, 2016 15:08
-
-
Save zopyx/ce7a95ae0003bf61643f4468ab6c5ef0 to your computer and use it in GitHub Desktop.
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
<html> | |
<head> | |
<style type="text/css"> | |
.rotated { | |
color: blue; | |
font-size: 2em; | |
page-break-after: always; | |
} | |
.rotated:left { | |
transform: rotate(90deg); | |
} | |
.rotated:right { | |
transform: rotate(-90deg); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="rotated"> | |
HELLO WORLD | |
</div> | |
<div class="rotated"> | |
HELLO WORLD | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment