CSS |文本方向属性

原文:https://www . geesforgeks . org/CSS-text-orientation-property/

CSS 中的文本方向属性用于设置一行中字符的方向。这个属性在垂直脚本中很有用,比如创建垂直的表格标题,定义行的名称等等。

语法:

text-orientation: mixed|upright|sideways;

属性:

  • mixed: This value is used to rotate the character of text into 90 degree clockwise. It is the default value.

    示例:

    ```html <!DOCTYPE html>

                 CSS | text-orientation Property     

            h1 {             color:green;         }         p {             writing-mode: vertical-rl;             text-orientation: mixed;         }     

        

    GeeksforGeeks

    A Computer Science Portal

```