普通元素垂直水平居中原理、单行多行文字垂直水平居中

2017-07-21  本文已影响55人  sdcV
一、普通元素三种垂直水平居中

如图:

image.png
<div class="main"> //html结构
    <div class="content"></div>
</div>
.main{   //main的样式
     width: 100px;
     height: 100px;
     background-color: #ff7f50;
     display: flex;
     align-items: center;
     justify-content: center;
}
  1. absolute小技巧</b>
.content1{
    width: 100px;
    height: 100px;
    background-color: #20b2aa;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

原理:利用绝对定位元素的盒模型特性,在偏移属性为确定值的基础上,设置margin:auto。

  1. translate()函数
.content2{
    width: 100px;
    height: 100px;
    background-color: #20b2aa;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

原理:利用绝对定位元素的偏移属性和translate()函数的自身偏移达到水平垂直居中的效果[注意]IE9-浏览器不支持。

  1. 使用flex
.main{
    width: 100px;
    height: 100px;
    background-color: #ff7f50;
    display: flex;
    align-items: center;
    justify-content: center;
}

原理:在伸缩容器上使用主轴对齐justify-content和侧轴对齐align-items。

二、文字居中垂直水平居中
image.png
<div class="middle-box"> //html结构
    <div class="middle-inner">
        <p>good good study,</p>
        <p>day day up!</p>
    </div>
</div>
上一篇下一篇

猜你喜欢

热点阅读