用css让一个容器水平垂直居中

阅读目录

这种css布局平时用的比较多,也是面试题常出的一个题,网上一搜一大丢,不过还是想自己总结一下。

这种方法比较多,本文只总结其中的几种,以便加深印象。

效果图都为这个:

回到顶部

方法一:position加margin

/**html**/<div class="wrap">
    <div class="center"></div>
</div>

/**css**/
.wrap {
    width: 200px;
    height: 200px;
    background: yellow;
    position: relative;
}
.wrap .center {
    width: 100px;
    height: 100px;
    background: green;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

兼容性:主流浏览器均支持,IE6不支持

回到顶部

方法二: diaplay:table-cell

<!-- html -->
<div class="wrap">
     <div class="center"></div>
</div>

/*css*/
.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;
}

兼容性:由于display:table-cell的原因,IE6\7不兼容

回到顶部

方法三:position加 transform


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

<!-- html -->

<div class="wrap">

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

</div>

/* 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;

}

兼容性:ie9以下不支持 transform,手机端表现的比较好。

  

回到顶部

方法四:flex;align-items: center;justify-content: center

<!-- html -->
<div class="wrap">
    <div class="center"></div>
</div>

/* css */
.wrap {
    background: yellow;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

移动端首选

回到顶部

方法五:display:flex;margin:auto

<!-- html -->
<div class="wrap">
    <div class="center"></div>
</div>

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

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

移动端首选

回到顶部

方法六:纯position


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

<!-- html -->

<div class="wrap">

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

</div>

/* css */

.wrap {

    background: yellow;

    width200px;

    height200px;

    positionrelative;

}

/**方法一**/

.center {

    backgroundgreen;

    positionabsolute;

    width100px;

    height100px;

    left50px;

    top50px

  

}

/**方法二**/

.center {

    backgroundgreen;

    positionabsolute;

    width100px;

    height100px;

    left50%;

    top50%;

  margin-left:-50px;

  margin-top:-50px;

}

  兼容性:适用于所有浏览器

方法六中的方法一计算公式如下:

  子元素(conter)的left值计算公式:left=(父元素的宽 - 子元素的宽 ) / 2=(200-100) / 2=50px;

  子元素(conter)的top值计算公式:top=(父元素的高 - 子元素的高 ) / 2=(200-100) / 2=50px;

  方法二计算公式:

  left值固定为50%;

  子元素的margin-left= -(子元素的宽/2)=-100/2= -50px;

  top值也一样,固定为50%

子元素的margin-top= -(子元素的高/2)=-100/2= -50px;

 

回到顶部

方法七:兼容低版本浏览器,不固定宽高


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

<!-- html -->

<div class="table">

    <div class="tableCell">

        <div class="content">不固定宽高,自适应</div>

    </div>

</div>

/*css*/

.table {

    height200px;/*高度值不能少*/

    width200px;/*宽度值不能少*/

    display: table;

    positionrelative;

    float:left;

    background: yellow;

}      

.tableCell {

    displaytable-cell;

    vertical-alignmiddle;

    text-aligncenter;        

    *positionabsolute;

    padding10px;

    *top50%;

    *left50%;

}

.content {

    *position:relative;

    *top-50%;

    *left-50%;

     backgroundgreen;

}

  

   

暂时总结上面的七种,这种方法太多,其实只要习惯了其中的一两种也就够用了。

回到顶部

总结

如果是移动端,那么用方法四和方法五是比较方便的。而且支持不固定宽高的情况,快、准、狠

也就是用 flexalign-items: center; justify-content: center;


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

<!-- html -->

<div class="wrap">

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

</div>

/* css */

.wrap {

    background: yellow;

    width200px;

    height200px;

    display: flex;

    align-items: center;

    justify-contentcenter;

}

.center {

    backgroundgreen;

    width100px;

    height100px;

}

或者  display:flex;margin:auto;


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

<!-- html -->

<div class="wrap">

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

</div>

/* css */

.wrap {

    background: yellow;

    width200px;

    height200px;

    display: flex;

}

.center {

    backgroundgreen;

    width100px;

    height100px;

    marginauto;

}

  

如果是PC端,要考虑兼容性的话。方法六是不错滴,也就是纯position。

<!-- html -->
<div class="wrap">
    <div class="center"></div>
</div>

/* css */
.wrap {
    background: yellow;
    width: 200px;
    height: 200px;
    position: relative;
}
/**方法一**/
.center {
    background: green;
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50px;
    top: 50px;
  
}
/**方法二**/
.center {
    background: green;
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
  margin-left:-50px;
  margin-top:-50px;
} 

如果PC端的中间的元素高度不固定,那么就用方法七即可,代码就不复制了

这种css元素垂直的如果真的要总结起来,应该有十几二十几种。不过也没必要全部掌握吧,只要大概了解一些,用起来没有副作用就行。

有误之处,欢迎指出

如果您觉得文章有用,也可以给咸鱼老弟发个微信小额红包鼓励,
让我可以有钱买书,吃顿饱饭,喝碗清汤

时间: 2024-10-03 03:09:01

用css让一个容器水平垂直居中的相关文章

公司的一个面试题:如何用css让一个容器水平垂直居中?

原文:公司的一个面试题:如何用css让一个容器水平垂直居中? <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>demo</title> </head> <body> <style type="text/css"> .div1{ width: 100px; height: 100px; bo

如何用css让一个容器水平垂直居中

直接上代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>demo</title> </head> <body> <style type="text/css"> .div1{ width: 100px; height: 100px; border: 1px solid #000000;

CSS让一个元素水平垂直居中

第一种方法:用margin+绝对定位的方式 兼容性:IE6,IE7下完全失效 HTML代码: <div id="container"> <div class="center"></div>   </div> CSS代码: #container{   /*基本样式*/   width:500px;   height:500px;   background:#fee;   /*定位方式*/   position:relat

前端每日实战3.纯 CSS 创作一个容器厚条纹边框特效

原文地址:3.纯 CSS 创作一个容器厚条纹边框特效 没有啥好点子呀,不爽 HTML代码: <div class="box"> <div class="content"> <h2>What is Lorem Ipsum?</h2> <p>Mauris volutpat risus quis nisi tempus hendrerit. Nullam nisi urna, suscipit quis risu

逆战班第三周 定位实现一个元素水平垂直居中的方法

我们在写页面的时候,经常会遇到一种需求,就是想让一个元素水平垂直居中,这种需求分两种情况,一种是相对于父元素,一种是相对于浏览器窗口,这两种情况都有很多种解决方法,但是我们今天就只说怎样用定位去解决元素水平垂直居中的问题 首先说第一种,子元素相对于父元素水平垂直居中 假设我们知道这个子元素和父元素的宽高,比如父元素宽高都是400px,子元素都是200px,为了让他们看起来都比较直观,我们给他一个背景色,在给父元素一个margin100px: 看到的效果就是这样 因为是相对与父元素垂直水平居中,那

CSS:div/img水平垂直居中

div水平垂直居中方法一: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> #test{ position: absolute; width: 100px; height: 100px; background: pink; left: 0; rig

CSS里的各种水平垂直居中基础写法心得

首先,依旧是概念.介绍一下行内元素和块级元素,这个很重要,因为有的属性只能用于块元素,而有的正好相反,在一定的情况下,它们也可以相互转换,比如用display来进行设置. 行内元素(又叫内联元素inline element): ①不占据一整行,随内容而定,有以下特点: ②不可以设置宽高,也不可以设置行高,其宽度随着内容增加,高度随字体大小而改变. ③内联元素可以设置外边界,但是外边界不对上下起作用,只能对左右起作用. ④也可以设置内边界,但是内边界在ie6中不对上下起作用,只能对左右起作用. 常

转 Div+Css控制背景图片水平垂直居中显示 背景铺满全屏

在Web开发中我们经常要碰到这样的问题:在为一个页面设置背景图片之后往往希望图片能够在分辨率比较大的情况下水平垂直都居中显示.通常水平居中显示在Css中是很容易做到的,而垂直居中就需要使用一些Css的技巧: 1. 首先为了能使得网站能够根据浏览器大小自适应,我们需要将页面的body元素height值设为100%,而在这之前,我们需要将xhtml验证从网站头删除.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN&quo

让一个元素水平垂直居中的几种方法

1.方法一——margin负 div.box{ weight:200px; height:400px; position:absolute; <!--设置元素的定位位置,距离上.左都为50%--> left:50%; top:50%; <!--设置元素的左外边距.上外边距为宽高的负1/2--> margin-left:-100px; margin-top:-200px; } 优点:兼容性好; 缺点:必须已知元素的宽高: 2.方法二——translate负50% div.box{ w