How to implement vertical text alignment with CSS (Summary)

How to implement vertical text alignment with CSS (Summary)

The default arrangement of text in HTML is horizontal, but in some special cases, the text needs to be arranged vertically.

Single line text vertical arrangement

.onecn{
     width: 20px;  
    margin: 0 auto;  
    line-height: 24px;  
} 

.oneen{
    width: 15px;
    margin: 0 auto;
    line-height: 24px;
    font-size: 20px;
    word-wrap: break-word;/*You need to add this sentence when writing in English to automatically wrap the line*/
    word-break:break-all;
}

Note: To arrange text in a single line vertically, you only need to set the width to just accommodate one font.

Multiple lines of text arranged vertically

.two{
      margin: 0 auto;
      height: 140px;
      writing-mode: vertical-lr;/*From left to right and from right to left is writing-mode: vertical-rl;*/ 
    writing-mode: tb-lr;/*IE browser's left to right and right to left is writing-mode: tb-rl;*/
  }

Note: Height is very important. If you need to control the spacing between text and lines, you can add the attributes letter-spacing and line-height.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  How to install redis in Docke

>>:  9 Practical Tips for Creating Web Content Pages

Recommend

Related operations of adding and deleting indexes in mysql

Table of contents 1. The role of index 2. Creatin...

Three solutions for sub-functions accessing external variables in JavaScript

Preface When we write web pages, we will definite...

MySQL v5.7.18 decompression version installation detailed tutorial

Download MySQL https://dev.mysql.com/downloads/my...

How to allow remote access to open ports in Linux

1. Modify the firewall configuration file # vi /e...

MySQL 8.0.20 installation and configuration method graphic tutorial

MySQL download and installation (version 8.0.20) ...

Example of how to implement embedded table with vue+elementUI

During my internship in my senior year, I encount...

Detailed tutorial on installing and configuring MySql5.7 on Ubuntu 20.04

Table of contents 1. Ubuntu source change 2. Inst...

Nested display implementation of vue router-view

Table of contents 1. Routing Configuration 2. Vue...

Installing the ping tool in a container built by Docker

Because the Base images pulled by Docker, such as...

Various correct postures for using environment variables in Webpack

Table of contents Write in front Business code us...

Detailed analysis of each stage of nginx's http request processing

When writing the HTTP module of nginx, it is nece...

Detailed examples of replace and replace into in MySQL into_Mysql

MySQL replace and replace into are both frequentl...

How to use Flex layout to achieve scrolling of fixed content area in the head

The fixed layout of the page header was previousl...

Summary of methods for writing judgment statements in MySQL

How to write judgment statements in mysql: Method...

Specific use of stacking context in CSS

Preface Under the influence of some CSS interacti...