How to make div text vertical in css

藏色散人
Release: 2023-01-03 09:24:42
original
5976 people have browsed it

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.

How to make div text vertical in css

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; }
Copy after login

Example:

    
    
    
    
竖列排版实例    
    

我是竖列排版
Copy after login

Rendering:

How to make div text vertical in css

##2. Common layout ideas: Setting the width of the text object can only arrange the width distance of the next text. If the text cannot fit two characters in one line, the text will automatically wrap, which creates the need for vertical typesetting.

    
    
    
    
竖列排版实例    
    

我是竖列排版
Copy after login
Rendering:

How to make div text vertical in css

Recommended: "

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!

Related labels:
css
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Latest issues
Popular Tutorials
More>
Latest downloads
More>
web effects
Website source code
Website materials
Front end template
About us Disclaimer Sitemap
PHP Chinese website:Public welfare online PHP training,Help PHP learners grow quickly!