CSS writing-mode 속성을 사용하여 텍스트 방향 설정하기.
CSS의 writing-mode 속성은 텍스트가 수평 또는 수직으로 배치되는 방식과 블록 및 라인이 진행되는 방향을 설정합니다. 이 속성은 중국어, 일본어 등 특정 언어에서 특히 유용합니다. 예시 코드로는 .element에 writing-mode: vertical-rl;를 사용할 수 있습니다.
Set text direction with the CSS writing-mode property.
The CSS writing-mode property determines whether lines of text are laid out horizontally or vertically, and the direction in which blocks and lines progress. This is particularly useful for languages like Chinese and Japanese. An example code is .element { writing-mode: vertical-rl; }.