Several commonly used methods for centering CSS boxes (summary)

Several commonly used methods for centering CSS boxes (summary)

The first one:

Using the CSS position property

<style type="text/css">
        .div1 {
            width: 100px;
            height: 100px;
            border: 1px solid #000000;
            position: relative;
        }

        .div2 {
            width: 40px;
            height: 40px;
            background-color: red;
            position: absolute;
            margin: auto;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
    </style>

    <div class="div1">
        <div class="div2">
        </div>
    </div>

Effect picture:

Second type:

Use the new CSS3 attributes table-cell, vertical-align:middle;

<style type="text/css">
        .div1 {
            width: 100px;
            height: 100px;
            border: 1px solid #000000;
            display: table-cell;
            vertical-align: middle;
        }

        .div2 {
            width: 40px;
            height: 40px;
            background-color: red;
            margin: auto;
        }

    </style>

    <div class="div1">
        <div class="div2">
        </div>
    </div>

Effect:

The third type:

Layout using flexbox

<style type="text/css">
    .div1 {
        width: 100px;
        height: 100px;
        border: 1px solid #000000;
        display: flex;
        /*!*flex-direction: column;*!Optional*/
        justify-content: center;
        align-items: center;
    }

    .div2 {
        height: 40px;
        width: 40px;
        background-color: red;
    }
</style>
<div class="div1">
    <div class="div2">
    </div>
</div>

Effect:

The fourth type:

Using the transform attribute (disadvantage: need to support Html5)

<style type="text/css">
    .div1 {
        width: 100px;
        height: 100px;
        border: 1px solid #000000;
        position: relative;
    }

    .div2 {
        height: 40px;
        width: 40px;
        background-color: red;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
</style>
<div class="div1">
    <div class="div2">
    </div>
</div>

Effect picture:

This concludes this article on several commonly used methods (summary) for centering a CSS box. For more information on centering a CSS box, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Detailed explanation of HTML page header code example

>>:  Solution to high CPU usage of Tomcat process

Recommend

Dealing with the problem of notes details turning gray on web pages

1. In IE, if relative positioning is used, that is...

Build a file management system step by step with nginx+FastDFS

Table of contents 1. Introduction to FastDFS 1. I...

Does the % in the newly created MySQL user include localhost?

Normal explanation % means any client can connect...

How to deploy kafka in docker

Table of contents 1. Build Docker 2. Enter the co...

Detailed explanation of MySql slow query analysis and opening slow query log

I have also been researching MySQL performance op...

MySQL reports an error: Can't find file: './mysql/plugin.frm' solution

Find the problem Recently, I found a problem at w...

Web front-end development course What are the web front-end development tools

With the development of Internet technology, user...

How to turn local variables into global variables in JavaScript

First we need to know the self-calling of the fun...

Various methods to implement the prompt function of text box in html

You can use the attribute in HTML5 <input="...

MySQL table and column comments summary

Just like code, you can add comments to tables an...

Docker swarm simple tutorial

swarm three virtual machines 132,133,134 1. Initi...

Analysis of MySQL latency issues and data flushing strategy process

Table of contents 1. MySQL replication process 2....

MySQL uses limit to implement paging example method

1. Basic implementation of limit In general, the ...

Vue3 encapsulates the side navigation text skeleton effect component

Vue3 project encapsulation side navigation text s...