CSS 데모: text-orientation 데모 버튼을 클릭해 보세요!
selector {
    text-orientation: mixed | upright | sideways
}
/* 키워드 값 */
text-orientation: mixed; /* 초깃값 */
text-orientation: upright;
text-orientation: sideways;

/* 전역 값 */
text-orientation: inherit;
text-orientation: initial;
text-orientation: revert;
text-orientation: revert-layer;
text-orientation: unset;
<section>
    <h4>Heading</h4>
    <p>Text paragraph 123</p>
    <h4>제목</h4>
    <p>텍스트 문단 123</p>
    <h4>제목 Heading</h4>
    <p>텍스트 paragraph 123</p>
</section>
section {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
실제 적용된 모습
section {
    writing-mode: vertical-rl;
    text-orientation: upright;
}
실제 적용된 모습
section {
    writing-mode: vertical-rl;
    text-orientation: sideways;
}
실제 적용된 모습