blob: 8045069b7b12121a8f34e3412aa2b510e0500bde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<style>
div {
width: 50px;
height: 100px;
border: 1px solid gray;
display: inline-block;
writing-mode: vertical-rl;
}
</style>
<!-- direction:rtl should make the text bottom-aligned (i.e. line-right) -->
<div style="direction:rtl;">x</div>
|