美文网首页Yixi's 前端学习小记
##CSS2 元素居中(水平居中+垂直居中)

##CSS2 元素居中(水平居中+垂直居中)

作者: Yixi_Li | 来源:发表于2018-11-15 22:04 被阅读70次

    1.元素水平居中
    最好用的:

    margin:0 auto;

    不好用的原因:
    1、元素没有设置宽度,没有宽度怎么居中嘛!
    2、设置了宽度依然不好使,你设置的是行内元素吧!
    示例:

    <div class="box">
    <div class="content">
    哇!居中了
    </div>
    </div>
    <style type="text/css">
    .box {
    background-color: #FF8C00;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    }
    .content {
    background-color: #F00;
    width: 100px;
    height: 100px;
    line-height: 100px;//文字在块内垂直居中
    text-align: center;//文字居中
    margin: 0 auto;
    }
    </style>

    如图: image.png

    2、元素水平垂直居中
    方案1:position 元素已知宽度
    父元素设置为:position: relative;
    子元素设置为:position: absolute;
    距上50%,据左50%,然后减去元素自身宽度的距离就可以实现
    示例:

    <div class="box">
    <div class="content">
    </div>
    </div>
    .box {
    background-color: #FF8C00;
    width: 300px;
    height: 300px;
    position: relative;
    }
    .content {
    background-color: #F00;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -50px 0 0 -50px;
    }

    如图:


    image.png

    方案2:position transform 元素未知宽度
    如果元素未知宽度,只需将上面例子中的margin: -50px 0 0 -50px;替换为:transform: translate(-50%,-50%);
    效果如上!
    示例:

    <div class="box">
    <div class="content">
    </div>
    </div>

    .box {
    background-color: #FF8C00;
    width: 300px;
    height: 300px;
    position: relative;
    }
    .content {
    background-color: #F00;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    }

    如图:

    image.png
    方案3:flex布局
    示例:

    <div class="box">
    <div class="content">
    </div>
    </div>
    .box {
    background-color: #FF8C00;
    width: 300px;
    height: 300px;
    display: flex;//flex布局
    justify-content: center;//使子项目水平居中
    align-items: center;//使子项目垂直居中
    }
    .content {
    background-color: #F00;
    width: 100px;
    height: 100px;
    }

    如图:


    image.png

    相关文章

      网友评论

        本文标题:##CSS2 元素居中(水平居中+垂直居中)

        本文链接:https://www.haomeiwen.com/subject/fcpufqtx.html