利用css来让一个div在页面中垂直居中的方法

Posted fireporsche

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用css来让一个div在页面中垂直居中的方法相关的知识,希望对你有一定的参考价值。

 

一、如何让一个div在页面中垂直居中(请至少列出三种)

 

1.距离页面窗口左边框和上边框的距离设置为50%,这个50%就是指页面窗口的宽度和高度的50%,最后将该DIV分别左移和上移,左移和上移的大小就是该DIV宽度和高度的一半。

width:300px; 

 height:200px; 

 position:absolute;

 left:50%

 top:50%;  

 margin:-100px 0 0 -150px ;

2.使用jquery代码

 $(window).resize(function(){ 

   $(".mydiv").css({ 

     position: "absolute", 

     left: ($(window).width() - $(".div").outerWidth())/2, 

     top: ($(window).height() - $(".div").outerHeight())/2 

   });        

}); 

3.使用绝对定位;top,bottom,left,right分别都为零

父元素设置为:

  width:800px;

           height:500px;

           border:2px solid #000;

           position:relative;

子元素设置为:

  width:200px;

            height:200px;

            margin: auto;

            position: absolute;

            top: 0; left: 0; bottom: 0; right: 0;

            

 

4.(此方法暂时只能设置元素在父级元素中垂直居中,还没有实现水平居中),使用display:table-cell

父元素设置为:

width:800px;

height:500px;

border:2px solid #000;

display:table-cell;

vertical-align:middle;

text-align: center;

子元素设置为:

 

width:200px;

height:200px;

 

display:inline-block;

5.实用弹性布局的方式来解决

父级元素设置为

width:800px;

height:500px;

border:2px solid #000;

display:flex;

justify-content:center;

align-items:center;

 

子元素设置为:

width: 200px;

height: 200px;

background-color: red;

以上是关于利用css来让一个div在页面中垂直居中的方法的主要内容,如果未能解决你的问题,请参考以下文章

让DIV水平和垂直居中的几种方法

如何让DIV里面的DIV水平垂直居中

CSS实现垂直居中的5种方法

CSS实现垂直居中的5种方法

实现垂直居中 5 种方法

利用CSS怎么让文字居中