Home >Web Front-end >CSS Tutorial >How to center vertical text in css

How to center vertical text in css

WBOY
WBOYOriginal
2021-12-09 15:27:5410237browse

Method: 1. Use the "writing-mode" attribute to set the vertical text display, the syntax is "text element {writing-mode:vertical-lr}"; 2. Use the "text-align" attribute to set the vertical text to be centered , syntax "text element {text-align:center}".

How to center vertical text in css

The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.

How to center vertical text in css

In css, you can use the writing-mode attribute to set the text to display vertically, and you can use text-align Property sets the text to be centered.

The writing-mode property defines how text is laid out horizontally or vertically.

The example is as follows:

<!DOCTYPE html>  
<html>  
<head>  
    <title>test</title>  
    <meta charset="UTF-8">  
</head>  
<style>  
.one {
  width:200px; 
    height: 140px; 
    border:1px solid #000; 
    writing-mode: vertical-lr;
    text-align:center;
}  
</style>  
<body>  
    <div class="one">好好学习</div>  
</body>  
</html>

Output result:

How to center vertical text in css

(Learning video sharing: css video tutorial)

The above is the detailed content of How to center vertical text in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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 admin@php.cn