Skip to content

Instantly share code, notes, and snippets.

@xto3na
Created July 20, 2016 11:37
Show Gist options
  • Save xto3na/27a4780d9a847a490beedd0947a3f449 to your computer and use it in GitHub Desktop.
Save xto3na/27a4780d9a847a490beedd0947a3f449 to your computer and use it in GitHub Desktop.
Text vertical CSS
// HTML
<span class="vertical">VERTICAL TEXT ON CSS</span>
// CSS
.vertical {
display: block;
writing-mode: vertical-rl;
height: 200px;
transform: rotate(-180deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment