Is it possible to have vertical text orientation in HTML?

I ask if it is possible to do something like this:

1

9

-

4

+3
source share
2 answers

You can try something like ...

.verticaltext{
font: bold 13px Arial;
width: 15px;
writing-mode: tb-rl;
}
+3
source

Try the following:

.rotate {
/* Safari */
-webkit-transform: rotate(-90deg);
/* Firefox */
-moz-transform: rotate(-90deg);
/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
0
source

Source: https://habr.com/ru/post/1793810/


All Articles