How can i make a text with html like in the screenshot below. I just need a simple text but it should be vertically.
Asked
Active
Viewed 103 times
2 Answers
1
You might be able to use writing-mode
CSS property.
h1 {
writing-mode: sideways-lr;
}
<h1>Safari</h1>

skube
- 5,867
- 9
- 53
- 77
1
span{
display:inline-block;
margin-top:20px;
transform:rotate(-90deg);
}
h2{
margin-top:40px;
writing-mode: vertical-lr;
}
<span>some text</span>
<h2>more text</h2>

DCR
- 14,737
- 12
- 52
- 115