本文操作环境:windows7系统、html5&&css3版,dell g3电脑
css几种简单方法实现文字竖向排版
下面介绍几种使用css实现文字竖向排版的方法:
1.一个句子的竖向排列
如图:
<!doctype html> <html> <head> <title>test</title> <meta charset="utf-8"> </head> <style> .one { width: 20px; margin: 0 auto; line-height: 24px; font-size: 20px;}.two { width: 15px; margin: 0 auto; line-height: 24px; font-size: 20px; word-wrap: break-word;/*英文的时候需要加上这句,自动换行*/ } </style> <body> <p class="one">我是竖列排版</p> <p class="two">i am english</p> </body> </html>
2.多个句子竖向排列(如古诗)
如图:
<!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;*/ writing-mode: tb-lr;/*ie浏览器的从左向右 从右向左是 writing-mode: tb-rl;*/ } </style> <body> <p class="one">欲话毗陵君反袂,欲言夏口我沾衣。谁知临老相逢日,悲叹声多语笑稀。</p> <p class="one">i am english</p></body> </html>
3.字体横行,整体竖向排版
如图:
<!doctype html><html><head> <title>test</title> <meta charset="utf-8"></head><style>.one { margin: 150px auto; width: 200px; font-size: 20px; line-height: 24px; transform:rotate(90deg); -ms-transform:rotate(90deg); /* ie 9 */ -moz-transform:rotate(90deg); /* firefox */ -webkit-transform:rotate(90deg); /* safari 和 chrome */ -o-transform:rotate(90deg); /* opera */}</style><body> <p class="one">欲话毗陵君反袂</p> <p class="one">english</p></body></html>
推荐学习:《css视频教程》
以上就是css如何设置竖排文字的详细内容。
