Example of horizontal and vertical centering of div sub-element using CSS

Example of horizontal and vertical centering of div sub-element using CSS

Div basic layout

<div class="main">
   <div class="center"></div>
  </div>

CSS Styles

1. Coordinate positioning and margin: auto

Add relative positioning to the parent element and absolute positioning to the child element

 .main{
    width: 300px;
    height: 300px;
    background-color: red;
    position: relative;
   }
   .center{
    width: 100px;
    height: 100px;
    background-color: skyblue;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
   }

2. Use flex layout to center the content horizontally and vertically.

 .main{
    width: 300px;
    height: 300px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
   }
   .center{
    width: 100px;
    height: 100px;
    background-color: greenyellow;
   } 

3. Use position:absolute and transform

: What needs to be remembered here is that when the percentage is used in the transform, it is relative to its own length and width, not the parent box.

 .main{
     width: 300px;
     height: 300px;
     background-color: red;
     position: relative;
    }
    .center{
     width: 100px;
     height: 100px;
     background-color: pink;
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
    }

4. Positioning and negative margin

Only suitable for cases where the length and width of the subbox are fixed

 .main{
     width: 300px;
     height: 300px;
     background-color: red;
     position: relative;
    }
    .center{
     width: 100px;
     height: 100px;
     background-color: pink;
     position: absolute;
     left: 50%;
     top: 50%;
     margin-left: -50px;
     margin-top: -50px;
    } 

5.display:table-cell

display:table-cell; and vertical-align:middle are used to center the child box in the numerical direction.

margin:auto; centers the child box horizontally. If you only want to center the box in one direction, just remove the other one.

.main{
     width: 300px;
     height: 300px;
     background-color: red;
     display: table-cell;
     vertical-align: middle;
    }
    .center{
     width: 100px;
     height: 100px;
     background-color: #000;
     margin: auto;
    }

This is the end of this article about examples of how to use CSS to horizontally and vertically center sub-elements div. For more information about how to horizontally and vertically center sub-elements div with CSS, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  VMware implements the detailed process of PXE+kickstart unattended installation of Centos7 system

>>:  Implementation of MySQL scheduled database backup (full database backup)

Recommend

A Deep Understanding of Angle Brackets in Bash (For Beginners)

Preface Bash has many important built-in commands...

MySQL slow query pt-query-digest analysis of slow query log

1. Introduction pt-query-digest is a tool for ana...

CentOS 7 Forgot Password Solution Process Diagram

need Whether it is a Windows system or a Linux sy...

Explanation of MySQL performance inspection through show processlist command

The show processlist command is very useful. Some...

Detailed explanation of NodeJS modularity

Table of contents 1. Introduction 2. Main text 2....

How to use async and await correctly in JS loops

Table of contents Overview (Loop Mode - Common) D...

Steps to install cuda10.1 on Ubuntu 20.04 (graphic tutorial)

Pre-installation preparation The main purpose of ...

What to do if the auto-increment primary key in MySQL is used up

In the interview, you should have experienced the...

The concept of MTR in MySQL

MTR stands for Mini-Transaction. As the name sugg...

Methods and steps for deploying GitLab environment based on Docker

Note: It is recommended that the virtual machine ...

Understanding MySQL index pushdown in five minutes

Table of contents What is index pushdown? The pri...

How to determine if the Linux system is installed on VMware

How to determine whether the current Linux system...

Prevent HTML and JSP pages from being cached and re-fetched from the web server

After the user logs out, if the back button on the...