css3 Method to center the box horizontally: 1. Use the margin attribute and add the "margin: 0 auto;" style to the box element to center it horizontally; 2. Use flex elastic layout to achieve horizontal centering; 3. Use the position and transform properties to achieve horizontal centering.
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
How to center the box horizontally in CSS is a very common interview question. The centering of the box is relative to the parent element. Therefore, when we center the box, we often use nesting to let the parent box nest. With child box.
How to center the child box when the parent and child boxes are nested:
The first method: margin: 0 auto, using the border, but the use of margin will affect The use of other boxes is not recommended;
The second method: position, use positioning, the child must be the same as the parent, then left: 50%, margin-left: negative box Half of the width, this is the most commonly used method;
The third method: flex, elastic layout, center the child box, but the style must be written in the parent box, display:flex,just-content:center;
Fourth method: Based on position, replace margin-left with transform in CSS3: translate(-50px );
-
The fifth method: Based on the position, only keep the child and parent, and then add margin:auto, left:0, right:0 to the child box ;
Supplement: In the fifth method, add top:0, bottom:0, you can achieve both vertical and horizontal centering
<div id="father"> <div id="son"></div> </div>
<style> #father{ width: 400px; height: 200px; border: 3px solid pink; } #son{ width: 100px; height: 100px; border: 2px solid red; } </style>
Use margin to achieve horizontal centering:
<style> #father{ width: 400px; height: 200px; border: 3px solid pink; margin: 30px auto; /* 让父元素相对于body居中 */ } #son{ width: 100px; height: 100px; border: 2px solid red; margin: 0 auto;/* 让子元素相对于father居中 */ } </style>
Use positioning, the child must be the same as the parent, then left: 50%, margin-left: half of the negative box width:
<style> #father{ width: 400px; height: 200px; border: 3px solid pink; margin: 0 auto; position: relative; } #son{ width: 100px; height: 100px; border: 2px solid red; position: absolute; left: 50%; margin-left: -50px; } </style>
Flex, flexible layout, centers the child box, but the style must be written in the parent box :
<style> #father{ width: 400px; height: 200px; border: 3px solid pink; margin: 0 auto; display: flex; justify-content: center; } #son{ width: 100px; height: 100px; border: 2px solid red; } </style>
On the basis of position, only the child and parent aspects are retained, and then in the child box Add margin: auto, left: 0, right: 0:
<style> #father{ width: 400px; height: 200px; border: 3px solid pink; margin: 0 auto; position: relative; } #son{ width: 100px; height: 100px; border: 2px solid red; position: absolute; margin: auto; left: 0; right: 0; } </style>
The above methods can achieve the horizontal centering of the box. If you have other excellent (odd) and showy (pai) methods, you are welcome to share them. !
The fifth method is added: adding top:0, bottom:0 can achieve both horizontal and vertical centering:
<style> #father{ width: 400px; height: 200px; border: 3px solid pink; margin: 0 auto; position: relative; } #son{ width: 100px; height: 100px; border: 2px solid red; position: absolute; margin: auto; left: 0; right: 0; top: 0; bottom: 0; } </style>
(Learning video sharing: css video tutorial)
The above is the detailed content of How to center the box horizontally in css3. For more information, please follow other related articles on the PHP Chinese website!

For a while, iTunes was the big dog in podcasting, so if you linked "Subscribe to Podcast" to like:

We lost Opera when they went Chrome in 2013. Same deal with Edge when it also went Chrome earlier this year. Mike Taylor called these changes a "Decreasingly

From trashy clickbait sites to the most august of publications, share buttons have long been ubiquitous across the web. And yet it is arguable that these

In this week's roundup, Apple gets into web components, how Instagram is insta-loading scripts, and some food for thought for self-hosting critical resources.

When I was looking through the documentation of git commands, I noticed that many of them had an option for . I initially thought that this was just a

Sounds kind of like a hard problem doesn't it? We often don't have product shots in thousands of colors, such that we can flip out the with . Nor do we

I like when websites have a dark mode option. Dark mode makes web pages easier for me to read and helps my eyes feel more relaxed. Many websites, including

This is me looking at the HTML element for the first time. I've been aware of it for a while, but haven't taken it for a spin yet. It has some pretty cool and


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor