11
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

縦書き表示するCSS

Last updated at Posted at 2014-10-31

CSSで文庫小説のように縦書きを実現できるようなので試しました。

縦書き表示をする

-webkit-writing-modeと-webkit-text-orientationを使います。

縦書き表示のCSS
p {
  -webkit-writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
}

反映の例

ツイッターのツイートを縦書き表示にしてみました。

縦書すると顔文字が変になります。
スマホだとそこそこ使えたりするのかな(☝ ՞ਊ ՞)

11
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?