CSS text-orientation 属性
定义和用法
text-orientation
属性指定字符的方向。
注意:仅当 writing-mode 设置为垂直时才有效。
浏览器支持
表格中的数字指定完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
text-orientation | 48.0 | 79.0 | 41.0 | 14.0 | 35.0 |
CSS 语法
text-orientation: mixed|upright|sideways|sideways-right|use-glyph-orientation|initial|inherit;
属性值
值 | 描述 | 演示 |
---|---|---|
mixed | 默认值。字符顺时针旋转 90 度。 | 演示 ❯ |
upright | 字符不旋转,而是直立。 | 演示 ❯ |
sideways | 字符的方向与 writing-mode 为垂直时的文本行方向相同,顺时针旋转 90 度。 | |
sideways-right | 等同于属性值 sideways。出于兼容性目的而保留。 | |
use-glyph-orientation | 用于 SVG 元素,以便文本继承已弃用的 SVG 属性 glyph-orientation-vertical 和 glyph-orientation-horizontal。 | |
initial | 将此属性设置为其默认值。 了解 initial | |
inherit | 从其父元素继承此属性。 了解 inherit |
更多示例
示例
text-orientation 属性可用于更改表格标题中的方向
th {
writing-mode: vertical-lr;
text-orientation: upright;
}
亲自试一试 »
相关页面
CSS writing-mode 属性: CSS 书写模式属性