文字方向 - 垂直/水平 文字書寫


Posted by hoyi-23 on 2021-06-12

CSS3 文字預設為水平書寫,若遇到需要垂直排版,或改變書寫方向(預設為由左至右)。
我們可以透過 writing-mode 設定:

writing-mode

writing-mode 的值有5種:

  1. writing-mode: horizontal-tb (水平書寫由左至右)
  2. writing-mode: vertical-rl (垂直書寫由右至左)
  3. writing-mode: vertical-lr(垂直書寫由左至右)

text-orientation 讓文字轉向

(僅搭配vertical-mode使用)

  1. text-orientation: mixed; 預設值
  2. text-orientation: upright;
  3. text-orientation: sideways-right;
  4. text-orientation: sideways;
  5. text-orientation: use-glyph-orientation;
  6. text-orientation: inherit;
  7. text-orientation: initial;
  8. text-orientation: unset;

CodePen 範例


#文字垂直書寫







Related Posts

關於 React 小書:若非 bind,事件監聽無法透過 this 取得實例

關於 React 小書:若非 bind,事件監聽無法透過 this 取得實例

協作-使用 Pull Request (PR)

協作-使用 Pull Request (PR)

[ Day 03 ] 用 Puppeteer 來做自動化機器人吧 (二) : 基礎篇

[ Day 03 ] 用 Puppeteer 來做自動化機器人吧 (二) : 基礎篇


Comments