text-orientationプロパティ
text-orientationプロパティは、
writing-modeプロパティでvertical-lrまたはvertical-rlが指定された縦書きテキストにおける文字の向きを設定します。このプロパティは2つの値を受け取ります:mixed(文字が時計回りに90°回転)またはupright(文字が縦に並ぶ)。
構文
セレクタ {
text-orientation: mixed または upright;
}
例
縦書きテキストのすべての文字を90°回転させてみましょう:
<p>
Text
</p>
body {
width: 200px;
height: 100px;
}
p {
text-orientation: mixed;
background: #467CBC;
color: white;
padding: 10px;
font-size: 2rem;
writing-mode: vertical-lr;
}
:
例
縦書きテキストのすべての文字を縦に並べてみましょう:
<p>
Text
</p>
body {
width: 200px;
height: 100px;
}
p {
text-orientation: upright;
background: #467CBC;
color: white;
padding: 10px;
font-size: 2rem;
writing-mode: vertical-lr;
}
:
関連項目
-
テキストの方向を設定するプロパティ
writing-mode -
フォントのカーニングを設定するプロパティ
font-kerning