Home  >  Article  >  Web Front-end  >  How to set line spacing in css

How to set line spacing in css

coldplay.xixi
coldplay.xixiOriginal
2021-04-29 14:38:503704browse

The way to set line spacing in css is to use line height [line-height] to set line spacing. The larger the value of line height [line-height], the higher the line spacing.

How to set line spacing in css

The operating environment of this tutorial: windows7 system, css3 version, DELL G3 computer.

How to set line spacing in css:

First of all, we should know that there is no property that can directly set line spacing in css, so we need to Use line-height to set the line spacing. The greater the value of line-height, the higher the line spacing . The value of

Line-height is set to a specific value, which can be a relative value or an absolute value. In a static page, when the text size is fixed Absolute values ​​are often used, but for forums and blogs where users can customize the font size, they are usually set to relative values, so that the corresponding line spacing can be changed with the user-defined font size.

Let’s take a look at the code example of using line-height to set line spacing in css:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            span {
                font-size: 20px;
                line-height: 2em;
            }
        </style>
         
    </head>
    <body>
        <span>
桃之夭夭,灼灼其华。之子于归,宜其室家。<br>
桃之夭夭,有蕡其实。之子于归,宜其家室。<br>
桃之夭夭,其叶蓁蓁。之子于归,宜其家人。
        </span> 
    </body>
</html>

The effect of css setting line spacing is as follows:

How to set line spacing in css

Recommended related tutorials: CSS video tutorial

The above is the detailed content of How to set line spacing 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