Vertical text with horizontal letters in CSS
To display vertical text with horizontal letters we can use two properties – text-orientation: upright and writing-mode: vertical-rl
<style> h2 { text-orientation: upright; writing-mode: vertical-rl; } </style>
<h2>Poopcode</h2>
The output would look like:
