垂直居中

一说到水平居中,立马会想到text-align: center或者margin: auto,很容易就实现了。然而,要实现垂直居中时,就没那么简单了。

下面简单介绍所了解到的几种方法。

// html
<div class="outer">
    <div class="inner"></div>
</div>

个人经常用到的两种方法:

.outer {
    position: relative;
    width: 500px;
    height: 400px;
    background: #ccc;
}
.inner {
    width: 200px;
    height: 200px;
    background: #aaa;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.outer {
    position: relative;
    width: 500px;
    height: 400px;
    background: #ccc;
}
.inner {
    width: 200px;
    height: 200px;
    background: #aaa;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

比较少用到,或者说基本不会这么写的两种方法:

.outer {
    position: relative;
    width: 500px;
    height: 400px;
    background: #ccc;
}
.inner {
    width: 200px;
    height: 200px;
    background: #aaa;
    position: absolute;
    top: calc(50% - 100px);  /* 200/2 = 100 */
    left: calc(50% - 100px);  /* 200/2 = 100 */
}
.outer {
    position: relative;
    width: 500px;
    height: 400px;
    background: #ccc;
}
.inner {
    width: 200px;
    height: 200px;
    background: #aaa;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px; /* 200/2 = 100 */
    margin-left: -100px; /* 200/2 = 100 */
}

flex,现在很多浏览器也都支持这个属性了,更少的代码。

.outer {
    width: 500px;
    height: 400px;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner {
    width: 200px;
    height: 200px;
    background: #aaa;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 收听音频,戳链接,旧号itclan已暂停使用,欢迎关注微信itclanCoder公众号可收听更多音频 前言 关于网...
    itclanCoder阅读 8,222评论 3 30
  • 博客原文:http://longtean.top/2017/07/28/%E6%B0%B4%E5%B9%B3%E5...
    LongTean阅读 295评论 0 2
  • 使用绝对定位和负外边距对块级元素进行垂直居中 html代码: css代码: 运行结果如下: 这个方法兼容性不错,但...
    深沉的简单阅读 275评论 0 2
  • 你喝不惯的白酒,为什么还有那么多人爱? 2017-01-19 Nora 企鹅吃 The Evening Primr...
    微尘玛奇朵阅读 315评论 0 0
  • 第二章,名叫酒吧的酒吧 回到家(海英集团在各市都有自己的房地产,包括A市),简单的洗漱后,薄菲儿拿出一瓶拉菲和艾可...
    唐画画阅读 222评论 0 1