Is it possible to get my text oriented vertically to the right with CSS, like on the image below ?
I tried the way below, but without being able to reverse
rotate it by -90deg using transform. If you want it in the opposite direction, rotate it by 90deg
-90deg
transform
90deg
div { background-color: #ccc; display: inline-block; padding: 5px; transform: rotate(-90deg); transform-origin: center bottom; }
dimanche