Skip to content

Instantly share code, notes, and snippets.

@zopyx
Created May 29, 2016 15:08
Show Gist options
  • Save zopyx/ce7a95ae0003bf61643f4468ab6c5ef0 to your computer and use it in GitHub Desktop.
Save zopyx/ce7a95ae0003bf61643f4468ab6c5ef0 to your computer and use it in GitHub Desktop.
<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