Detailed explanation of CSS line-height and height

Detailed explanation of CSS line-height and height

Recently, when I was working on CSS interfaces, I often encountered the two attributes of line-height and height. I never really understood them. Today, I took the time to look them up online and I have some understanding of them. https://blog.csdn.net/a2013126370/article/details/82786681 This blogger wrote very well. At least it gave me a deeper understanding of line-height and height. It is worth learning from.

1. Some basic concepts

1. Line height refers to the vertical distance between the baselines of text lines (also called line spacing)

2. Line spacing is the distance between the bottom line of the previous line and the top line of the next line

From my personal understanding, we can draw the following conclusions:

1. When the height attribute of div is not set, the height of div changes according to the size of line-height and is not affected by font-size.

2. Height is used to set the height of elements, such as the height of img, the height of div, etc. The line-height property is used to set line spacing (line height), and the two are not the same concept.

2. Code Examples

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>sdds</title>
        <style>
            html,body,div{
                margin: 0;
                padding: 0;
                border: 0;
            }
            .bg0{
                width: 200px;
                height: 45px;
                line-height: 100px;
                background-color: red;
                font-size: 10px;
                word-wrap:break-word;
            }
            .bg1{
                width: 200px;
                height: 10px;
                background-color: green;
            }
            .bg2{
                width: 200px;
                height: 45px;
                background-color: yellow;
            }
            .bg3{
                width: 200px;
                height: 55px;
                background-color: blue;
            }
        </style>
    </head>

<body>
    <div class="bg0">Shanghai University (SHU) is a 211 university</div>
    <div class="bg1"></div>
    <div class="bg2"></div>
    <div class="bg3"></div>
</body>
</html>

Running results:

Conclusion: It can be seen that the sum of the heights of the yellow background div and the blue background div is the line-height=100px set for the div with class name bg0, and the height=45px set for the first part of the red div is obtained by subtracting fontsize from line-height and dividing by 2, that is, (100-10)/2=45px.

The above is a detailed explanation of CSS line-height and height. For more information about CSS line-height and height, please pay attention to other related articles on 123WORDPRESS.COM!

<<:  Teach you how to use AWS server resources for free

>>:  Use PS to create an xhtml+css website homepage in two minutes

Recommend

In-depth explanation of nginx location priority

location expression type ~ indicates to perform a...

Summary of H5 wake-up APP implementation methods and points for attention

Table of contents Preface Jump to APP method URL ...

Teach you how to implement Vue3 Reactivity

Table of contents Preface start A little thought ...

Some conclusions on the design of portal website focus pictures

Focus images are a way of presenting content that ...

HTML form tag usage learning tutorial

Forms in HTML can be used to collect various type...

Detailed explanation of GaussDB for MySQL performance optimization

Table of contents background Inspiration comes fr...

Detailed explanation of the use of shared memory in nginx

In the nginx process model, tasks such as traffic...

favico.ico---Website ico icon setting steps

1. Download the successfully generated icon file, ...

CSS code to achieve 10 modern layouts

Preface I watched web.dev's 2020 three-day li...

SSH port forwarding to achieve intranet penetration

The machines in our LAN can access the external n...

jQuery implements the bouncing ball game

This article shares the specific code of jQuery t...

Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem

MySQL 5.7.9 version sql_mode=only_full_group_by i...

CSS container background 10 color gradient Demo (linear-gradient())

grammar background: linear-gradient(direction,col...

Detailed explanation of the seven data types in JavaScript

Table of contents Preface: Detailed introduction:...

Summary of common commands for Ubuntu servers

Most of the commands below need to be entered in ...