Java教程

第19题:让一个div水平垂直居中有几种方式?

本文主要是介绍第19题:让一个div水平垂直居中有几种方式?,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.png

实现上方效果,下面列举几个常用的方法,个人比较推荐用 flex 布局实现

方式 1(利用 margin 和绝对定位)

html

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

css

.container {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #000;

    .box {
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 50px;
        background-color: #fff;
    }
}

方式 2(利用 flex 布局)

html

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

css

.container {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;

    .box {
        width: 50px;
        height: 50px;
        background-color: #fff;
    }
}

这篇关于第19题:让一个div水平垂直居中有几种方式?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!