Vertical display of characters in Glide app

Japan / Taiwan / Mongolia.
The letters of these countries and regions are used not only for horizontal writing but also for vertical writing.
The following code is useful when you want to display vertically in Glide.

<pre><span><style>
div[id*='screenScrollView'] > div > div:nth-last-of-type(3),div[id*='screenScrollView'] > div > div:nth-last-of-type(2) {
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
position: relative;
}
div[id*='screenScrollView'] > div > div:nth-last-of-type(3)  [data-test="app-text-box"] {
margin-top:-10px;
margin-right:0px;
height:250px;
line-height: 1.9rem;
}
div[id*='screenScrollView'] > div > div:nth-last-of-type(2) [data-test="app-text-box"] {
margin-top:-250px;
margin-right:128px;
height:250px;
font-size: 1rem ;
line-height: 1.7rem;
}

8 Likes