CSS3 文字預設為水平書寫,若遇到需要垂直排版,或改變書寫方向(預設為由左至右)。
我們可以透過 writing-mode 設定:
writing-mode
writing-mode 的值有5種:
- writing-mode: horizontal-tb (水平書寫由左至右)
- writing-mode: vertical-rl (垂直書寫由右至左)
- writing-mode: vertical-lr(垂直書寫由左至右)
text-orientation 讓文字轉向
(僅搭配vertical-mode使用)
- text-orientation: mixed; 預設值
- text-orientation: upright;
- text-orientation: sideways-right;
- text-orientation: sideways;
- text-orientation: use-glyph-orientation;
- text-orientation: inherit;
- text-orientation: initial;
- text-orientation: unset;