How to make div text vertical in css: first create an HTML sample file; then create a div; finally, set the css style to "div{writing-mode: tb-rl;}" to make it vertical. The div text is vertical.
The operating environment of this article: Windows7 system, HTML5&&CSS3, Dell G3 computer.
How to set text to be arranged vertically in css:
1. Writing-mode (setting the writing direction of the object)
Syntax: writing-mode: lr-tb, tb-rl
Parameters: lr-tb: left to right, top to bottom tb-rl: top to bottom, right to left
Example:
css code:
div { writing-mode: tb-rl; }
Example:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>竖列排版实例</title> <style> div { writing-mode: tb-rl; } </style> </head> <body> <div>我是竖列排版</div> </body> </html>
Rendering:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>竖列排版实例</title> <style> body{text-align:center} .shuli{ margin:0 auto;width:20px;line-height:24px;border:1px solid #333} </style> </head> <body> <div class="shuli">我是竖列排版</div> </body> </html>
css video tutorial"
The above is the detailed content of How to make div text vertical in css. For more information, please follow other related articles on the PHP Chinese website!