垂直居中的几种方法

Posted sunmarvell

tags:

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

方法一

这个方法把div 的显示方式设置为表格,因此我们可以使用表格的 vertical-align属性。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>垂直居中</title>
    <style type="text/css">
        #wrapper {
            display: table;    /*here*/
            background:blue;
            width:400px;
            height:200px;
        }
        
        #container {
            display: table-cell;       /*here*/       
            vertical-align: middle;    /*here*/
            background: yellow;
            width:300px;
            height:50%;
        }
    </style>
</head>

<body>
    <div id="wrapper">
        <div id="container">
            我要用表格属性垂直居中,
            我要用表格属性垂直居中,
            我要用表格属性垂直居中,
            我要用表格属性垂直居中
        </div> 
    </div> 
</body>
</html>

 

实现如图:

技术分享图片

优点:

  • container 可以动态改变高度(不需在 CSS 中定义)。当 wrapper 里没有足够空间时, container 不会被截断
  • 例如
  •  #wrapper {
                display: table;    /*here*/
                background:blue;
                width:100px;
                height:100px;
            }
            
            #container {
                display: table-cell;       /*here*/       
                vertical-align: middle;     /*here*/
                background: yellow;
                width:50%;
                height:50%;
            }

    效果如图:技术分享图片

缺点:

  • Internet Explorer(甚至 IE8 )中无效,许多嵌套标签(其实还好)。
方法二

以上是关于垂直居中的几种方法的主要内容,如果未能解决你的问题,请参考以下文章

DIV实现垂直居中的几种方法

div水平垂直居中的几种方法

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

CSS让图片垂直居中的几种技巧

CSS让图片垂直居中的几种技巧

垂直水平居中的几种方法