[点晴永久免费OA]CSS怎么让DIV中的文字竖向排版
|
admin
2022年8月24日 10:55
本文热度 2025
|
文章简介:css中可用writing-mode属性让文字竖着排版,只需要给文字元素添加“writing-mode:vertical-lr;”、“writing-mode:vertical-rl;”或“writing-mode:tb-rl”样式即可。 |
有时候网页中的文字因为特别要求不能横向显示,这时候所需要的就是让文字来竖排显示,那么,网页中如何让文字竖排显示呢?接下来本篇文章将介绍css实现文字竖排显示的方法,希望对大家有所帮助。
使用writing-mode属性
writing-mode 属性定义了文本在水平或垂直方向上如何排布。
语法:
1 | writing-mode:vertical-rl | vertical-lr | lr-tb | tb-rl
|
参数:
示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 | <!DOCTYPE html>
< html >
< head >
< title >test</ title >
< meta charset = "UTF-8" >
</ head >
< style >
.one {
margin: 0 auto;
height: 140px;
writing-mode: vertical-lr;/*从左向右 从右向左是 writing-mode: vertical-rl;*/
}
</ style >
< body >
< div class = "one" >好好学习,天天向上。
福如东海,寿比南山。 </ div >
</ body >
</ html >
|
效果如下:
或者通过:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | <!DOCTYPE html>
< html >
< head >
< title >test</ title >
< meta charset = "UTF-8" >
</ head >
< style >
.one {
margin: 0 auto;
height: 140px;
writing-mode: vertical-rl;
}
</ style >
< body >
< div class = "one" >好好学习,天天向上。
福如东海,寿比南山。 </ div >
</ body >
</ html >
|
或者:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | <!DOCTYPE html>
< html >
< head >
< title >test</ title >
< meta charset = "UTF-8" >
</ head >
< style >
.one {
margin: 0 auto;
height: 140px;
writing-mode: tb-rl;/*从左向右 从右向左是 writing-mode: vertical-rl;*/
}
</ style >
< body >
< div class = "one" >好好学习,天天向上。
福如东海,寿比南山。 </ div >
</ body >
</ html >
|
输出结果:
该文章在 2022/8/24 22:52:58 编辑过