垂直居中的方法

2017-10-24  本文已影响0人  饥人谷_小侯

1.正常情况下的垂直居中

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="ct">
    <p>你好你好你好</p>
    <p>你好你好你好</p>
  </div>
</body>
</html>
.ct{
  padding: 45px 0;
  text-align: center;
  background: #eee;
}

以上面的方法可以设置两个段落在页面中垂直居中。

2. 通过绝对定位来设置垂直居中

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="dialog">
    <div class="header">我是标题</div>
    <div class="content">我是内容</div>
  </div>
</body>
</html>
.dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -200px;
  margin-top: -150px;
  width: 400px;
  height: 300px;
  box-shadow: 0px 0px 3px #000;
}
.dialog .header{
  padding: 10px;
  background: #000;
  color: #fff;
}
.dialog .content{
  padding: 10px;
}

3.通过绝对定位和translate来设置垂直居中

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="css">
    <p>你好你好你好</p>
  </div>
</body>
</html>
p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: yellow;
}

4.使用vertical-align实现居中

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="box">
    ![](https://img.haomeiwen.com/i8002989/151d3966d311e4ad.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
  </div>
</body>
</html>
.box{
  width: 300px;
  height: 200px;
  border: 1px solid ;
  text-align: center;
}
.box:before{
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.box img{
  vertical-align: middle;
  background: blue;
}

5.通过table-cell实现居中

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="box">
    ![](https://img.haomeiwen.com/i8002989/151d3966d311e4ad.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
  </div>
</body>
</html>
.box{
  width: 300px;
  height: 200px;
  border: 1px solid ;
  text-align: center;
}
.box:before{
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.box img{
  vertical-align: middle;
  background: blue;
}

6.直接通过table标签来设置绝对居中

方法:

<table>
    <tr>
        <td>
            <div></div>
        </td>
    </tr>
</table>

上面例子中的div默认就是绝对居中的

7.通过flex布局来设置绝对居中

使用场景:可以兼容CSS3的情况下。
方法:使用flex布局,在父元素中添加如下代码:

display:flex;
justify-content: center;
align-items: center;
上一篇下一篇

猜你喜欢

热点阅读