7 ways to center containers horizontally and vertically with css
This article mainly introduces in detail the 7 ways of using CSS to center the container horizontally and vertically. It has certain reference value. Interested friends can refer to
This kind of CSS layout is usually used. There are quite a lot of them, and it is also a question that often comes up in interviews. You will find a lot of them after searching online, but I still want to summarize them myself.
There are many methods of this kind. This article only summarizes a few of them to deepen the impression.
The renderings are all like this:
Method 1: position plus margin
# #XML/HTML CodeCopy content to clipboard
- ##<
p class ="wrap">
##< p class="center">p>
p>
##CSS Code
## /**css**/
.wrap {- width
- :
200px; height: 200px; background : yellow; position: relative; ##} .wrap .center {
width : - 100px
; height: 100px; background: green; margin: auto; position: absolute; left: 0; rightright: 0; top: 0; bottombottom: 0; }
Compatibility: supported by all major browsers, but not supported by IE6 - Method 2: diaplay:table-cell
XML/HTML Code
Copy content to clipboard
<
p- class
="wrap"> <
p - class
= "center">p>
p - >
- CSS Code
Copy content to clipboard
/*&/ .wrap{
width- :
- 200px
; height: 200px; background: yellow ; display: table-cell; vertical-align: middle; text-align: center;
} .center{ display: inline-block; vertical-align: middle; width: 100px; height: 100px; background : green;
}
Compatibility: Due The reason for display:table-cell is that IE67 is not compatible
Method three: position plus transform
XML/HTML CodeCopy content to clipboard
#
- ##<
p class="wrap">
##< p class="center"> p> ##
- p
>
Copy content to clipboard
##/* css */ .wrap {
position- :
- relative
; background: yellow; width: 200px; height: 200px;} .center { position: absolute; background: green; top:50%; left:50%; -webkit-transform:translate(-50%,-50%); transform:translate(-50%,-50%); width: 100px; height: 100px; }
- Compatibility: Transform is not supported under IE9 and below, and the mobile version performs better.
- Method 4: flex;align-items: center;justify-content: center
##XML/HTML Code
Copy content to clipboard#
- ##<
p class
= "wrap"> ## <p class=
"center"- >
p> ## p>
-
##CSS Code
Copy content to clipboard -
/* css */ .wrap { background: yellow; width: 200px; height: 200px; display: flex; align-items: center; justify -content: center;
} .center { background: green; width: 100px; height: 100px;
}
Mobile preferred
Method five: display :flex;margin:auto
XML/HTML CodeCopy content to clipboard
##
- ##<
p class="wrap">
##< p class="center">p> ; ##
- p
>
CSS Code
/* css */
- .wrap {
- background
: yellow; width: 200px; height: 200px ; display: flex; } .
center { - background
: green; width: 100px; height: 100px; margin: auto; }
Preferred method for mobile terminal
Pure position
XML/HTML Code
##
##<
p- class
="wrap"> ##<p
class - =
"center">p > ##p
> CSS Code
Copy content to clipboard
/* css */ .wrap { background: yellow; width: 200px; height: 200px; position: relative;
} /**method one**/ .center { background: green; position: absolute; width: 100px; height: 100px; left: 50px; top: 50px;
} /** Method Two**/ .center { background: green; position: absolute; width: 100px; height: 100px; left: 50%; top: 50%; margin-left:-50px; margin-top:-50px;
-
}
Compatibility: Applicable to all browsers
Calculation formula for method one in method six As follows:
The left value calculation formula of the child element (conter): left=(width of the parent element - width of the child element) / 2=(200-100) / 2=50px;
Child element (conter) The top value calculation formula: top=(height of parent element - height of child element) / 2=(200-100) / 2=50px;
Method 2 calculation formula:
The left value is fixed at 50%;
The margin-left of the child element= -(width of the child element/2)=-100/2= -50px;
The top value is the same, fixed at 50%
The margin-top= of the child element -(Height of child element/2)=-100/2= -50px;
Method 7:Compatible with lower version browsers, no fixed width and height
XML/HTML CodeCopy content to clipboard
<p class="table">
-
<p class= "tableCell"> #=
"content" - >
No fixed width and height, adaptivep> ## p>
p>
##CSS Code
Copy content to clipboard
.table {
height
200px;/*The height value cannot be less*/ width
:- 200px
- ;
/ *The width value cannot be less*/ display: table; position: relative; float:left; background: yellow;
-
} .tableCell { display: table-cell; vertical-align: middle; text-align: center;
: 10px - ;
*top: 50%;
* left - : 50%;
} .
content - {
*
position - :
relative;
- *
top: -50%;
* left - : -50%;
background: green
; }
- To summarize the above seven methods for now, there are too many methods. In fact, as long as you are used to one or two of them, it will be enough. Summary
- If it is a mobile terminal, then it is more convenient to use methods four and five. It also supports non-fixed width and height, which is fast, accurate and ruthless That is, use flex; align-items: center; justify-content: center;
##XML/HTML Code
Copy content to clipboard
#
##<
p- class
="wrap"
> ## <p class="center">
p> ## p>
##CSS Code Copy content to clipboard
-
##/* css */
.wrap { background: - display
: flex; align- items: center; justify-content: center; ##} .center { background: green; width: 100px; height: 100px
; -
} Or display:flex;margin:auto;
XML/HTML Code - Copy content to clipboard
-
- p
class ="center">p
> p>
##/* css */ .wrap { background: yellow; width: 200px; height: 200px; display : flex;
##} .- center
{ background: green; width: 100px; height: 100px; margin: auto;
} - If it is a PC version, compatibility must be considered. Method six is good, that is, pure position.
p class="wrap"> <
p class ="center">p>
p>
- .wrap {
background: yellow; width: 200px; height: 200px ; position: relative; ##}
/**method one**/ . - center
{ background: green; position: absolute; width: 100px ; height: 100px; left: 50px; top: 50px;
-
}
/**Method Two**/ . - center
{ background: green; position: absolute; width: 100px; height: 100px; left: 50%; top: 50%; margin-left:- 50px; margin-top:-50px; }
If the height of the middle element on the PC side is not fixed, then just use method seven, and the code will not be copied.
If we really want to sum up the vertical css elements, there should be more than ten or twenty types. However, it is not necessary to master them all, as long as you have a general understanding and there are no side effects when using them.
yellow
;
: 200px; height:
200px- ;
##<
class="wrap"
>CSS CodeCopy content to clipboard
Copy content to clipboard
CSS Code
Copy content to clipboard
- /* css */
The above is the detailed content of 7 ways to center containers horizontally and vertically with css. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-
