search
HomeWeb Front-endCSS Tutorial7 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

  1. ##p class ="wrap">
  2. ##

    p class="center">p>

  3. p>

##CSS Code

Copy content to clipboard

## /**css**/

.wrap {
    width
  1. :

    200px; height: 200px; background : yellow; position: relative; ##} .wrap .center {

    width
  2. :
  3. 100px

    ; height: 100px; background: green; margin: auto; position: absolute; left: 0; rightright: 0; top: 0; bottombottom: 0; }

  4. Compatibility: supported by all major browsers, but not supported by IE6
  5. Method 2:
  6. diaplay:table-cell

XML/HTML Code

Copy content to clipboard

  1. p
  2. class

    ="wrap">

    p
  3. class

    = "center">p>

    p
  4. >

  5. CSS Code

Copy content to clipboard

/*&/ .wrap{

width
    :
  1. 200px

    ; height: 200px; background: yellow ; display: table-cell; vertical-align: middle; text-align: center;

  2. } .center{ display: inline-block; vertical-align: middle; width: 100px; height: 100px; background : green;

  3. }

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

  1. #

  2. ##p class="wrap">
  3. ##

    p class="center"> p>

    ##
  4. p

    >

##CSS Code


Copy content to clipboard

##/* css */ .wrap {

position
    :
  1. 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; }

  2. Compatibility: Transform is not supported under IE9 and below, and the mobile version performs better.
  3. Method 4:
  4. flex;align-items: center;justify-content: center

##XML/HTML Code

Copy content to clipboard


#

    ##

    p class

    ="wrap"
  1. > ##​ p class=

    "center"
  2. >

    p> ## p>

  3. ##CSS Code

  4. Copy content to clipboard
    1. /* css */ .wrap { background: yellow; width: 200px; height: 200px; display: flex; align-items: center; justify -content: center;

    2. } .center { background: green; width: 100px; height: 100px;

    3. }

    Mobile preferred

    Method five: display :flex;margin:auto


    XML/HTML CodeCopy content to clipboard

    1. ##

    2. ##p class="wrap">
    3. ##

      p class="center">p> ;

      ##
  5. p

    >

CSS Code

Copy content to clipboard

/* css */
    .wrap {
  1. background

    : yellow; width: 200px; height: 200px ; display: flex; } .

    center
  2. {
  3. background

    : green; width: 100px; height: 100px; margin: auto; }

  4. Preferred method for mobile terminal

Six:

Pure position

XML/HTML Code

Copy content to clipboard

##

  1. ##

    p
  2. class

    ="wrap"> ##p

  3. class
  4. =

    "center">p > ##p

    >
  5. CSS Code

  6. Copy content to clipboard

  1. /* css */ .wrap { background: yellow; width: 200px; height: 200px; position: relative;

  2. } /**method one**/ .center { background: green; position: absolute; width: 100px; height: 100px; left: 50px; top: 50px;

  3. } /** Method Two**/ .center { background: green; position: absolute; width: 100px; height: 100px; left: 50%; top: 50%; margin-left:-50px; margin-top:-50px;

  4. }

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

  1. p class="table">

  2. p class= "tableCell">                                                         #=

    "content"
  3. >

    No fixed width and height, adaptivep> ##     p>  

  4. p>

  5. ##CSS Code

  6. Copy content to clipboard
##/*css*/

.table {
height

:

200px;/*The height value cannot be less*/ width

:
    200px
  1. ;

    / *The width value cannot be less*/ display: table; position: relative; float:left; background: yellow;

  2. } .tableCell { display: table-cell; vertical-align: middle; text-align: center;

    :
  3. 10px
  4. ;

    *top: 50%;

    *
  5. left
  6. : 50%;

    } .
  7. content
  8. {

    *
  9. position
  10. :

    relative;

  11. *

    top: -50%;

    *
  12. left
  13. : -50%;

    background: green

    ;
  14. }

  15. 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.

  16. Summary
  17. 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
  18. That is, use flex; align-items: center; justify-content: center;

##XML/HTML Code

Copy content to clipboard



#

##

p
  1. class

    ="wrap"

    >
  2. ##​ p class="center">

  3. p> ## p>

  4. ##CSS Code Copy content to clipboard

  5. ##/* css */

    .wrap {
  6. background
:

yellow
;

width

: 200px; height:

200px
    ;
  1. display

    : flex; align- items: center; justify-content: center; ##} .center { background: green; width: 100px; height: 100px

    ;
  2. } Or display:flex;margin:auto;

    XML/HTML Code
  3. Copy content to clipboard

##

p

class="wrap"

>
  1. p

    class ="center">p

    >
  2. p>

  3. CSS CodeCopy content to clipboard

    1. ##/* css */ .wrap { background: yellow; width: 200px; height: 200px; display : flex;

    2. ##} .
    3. center

      { background: green; width: 100px; height: 100px; margin: auto;

    4. }
    5. If it is a PC version, compatibility must be considered. Method six is ​​good, that is, pure position.


    XML/HTML Code

    Copy content to clipboard

    1. ##

      p class="wrap">

      p class ="center">p>

    2. p>


    CSS Code

    Copy content to clipboard

      /* css */
    1. .wrap {

      background: yellow; width: 200px; height: 200px ; position: relative; ##}

      /**method one**/
    2. .
    3. center

      { background: green; position: absolute; width: 100px ; height: 100px; left: 50px; top: 50px; ​

    4. }  

      /**Method Two**/
    5. .
    6. center

      { background: green; position: absolute; width: 100px; height: 100px; left: 50%; top: 50%; margin-left:- 50px; margin-top:-50px; }

    7. 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.

    8. 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.

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!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

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.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.