I want make CrossBrowser Vertical CSS Text , i have this code
but I need the text to rotate like this :
I want make CrossBrowser Vertical CSS Text , i have this code
but I need the text to rotate like this :
You can achieve it via transform: rotate()
CSS property, for example:
div {
width: 300px;
transform-origin: center top;
transform: rotate(270deg);
}
<div>
<h1>First</h1>
<h1>Second</h1>
<h1>Third</h1>
</div>