css水平居中,垂直居中,水平垂直居中

1.水平居中

(1)如果父元素是块级元素,子元素是行内元素,要求子元素水平居中,可以在父元素上定义text-align:center来实现水平居中

(2)如果父元素和子元素都是块级元素,那么可以在子元素上设置margin:0 auto实现水平居中

(3)通过将父元素设置成table-cell,然后设置text-align:center。(慎用)

2.垂直居中

(1)如果子元素是行内块元素,则可以使用vertical-align:middle来实现垂直居中,但是经常会不起效果,谨慎使用,基于baseline对齐,关于vertical-align和baseline可以看看这篇博客https://www.cnblogs.com/starof/p/4512284.html?utm_source=tuicool&utm_medium=referral

(2)如果子元素是单行文本的话,可以设置子元素line-height的高度和父元素高度一致达到垂直居中。

  当然也可以用下面水平垂直居中的方法。

3.水平垂直居中

(1)绝对定位(position:absolute)+margin-top,margin-left负自身宽度一半的值

.parent{
    width: 600px;
    height: 600px;
    background-color:#380fff;
    position: relative;
}
.son{
    width: 200px;
    height: 200px;
    background-color: aqua;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -100px;
}

(2)绝对定位(position:absolute)+transform:translate(-50%,-50%)

.parent{
    width: 600px;
    height: 600px;
    background-color:#380fff;
    position: relative;
}
.son{
    width: 200px;
    height: 200px;
    background-color: aqua;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);/*将元素向上和向左移动自身宽度的50%*/
}

(3)绝对定位(position:absolute)+ 各个方位距离0+margin:auto

.parent{
    width: 600px;
    height: 600px;
    background-color:#380fff;
    position: relative;
}
.son{
    width: 200px;
    height: 200px;
    background-color: aqua;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

(4)绝对定位(position:absolute)+ calc(计算属性)

.parent{
    width: 600px;
    height: 600px;
    background-color:#380fff;
    position: relative;
}
.son{
    width: 200px;
    height: 200px;
    background-color: aqua;
    position: absolute;;
    top: calc(50% - 100px); 
    left: calc(50% - 100px); /*减去宽度和高度的一半*/
}

(5)table布局,但是现在都不推荐使用table布局了

(6)flex布局

.parent{
    width: 600px;
    height: 600px;
    background-color:#380fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.son{
    width: 200px;
    height: 200px;
    background-color: aqua;
}

水平垂直居中更详细的见https://segmentfault.com/a/1190000016389031?utm_source=tag-newest此博客

你可能感兴趣的:(前端)