Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个用日语阅读 epub 书的应用程序。一般来说,网络视图将从html加载文本并从左到右和从上到下显示在网络视图中,但是我的应用程序要求在网络视图中显示文本从上到下然后从左到右跟随文本,所以有在 UIWebView 中显示文本的任何解决方案都遵循上述格式,感谢您的帮助...
您正在寻找 CSS 属性writing-mode: vertical-rl。
writing-mode: vertical-rl
然而,这是一个广泛的话题。您可能需要调整其他属性,例如text-orientation(必要时将非 CJK 字形竖直放置)、text-combine(将两个数字水平分组到单个字符“单元格”中,等等。
text-orientation
text-combine
无论如何,请注意,您现在处于另一个宇宙中,诸如“左”之类的基本概念现在正在改变它们对您的含义。