Css--实现盒模型水平垂直居中

一、CSS实现盒子模型水平居中的方法

全局样式配置:

.parent {
    color: #FFFFFF;
    height: 200px;
    width: 200px;
    margin: 0 auto;
    background-color: #000000;
}
 
.child {
    width: 50px;
    height: 50px;
    background-color: #26f12d;
}

第一种:margin+width  (这种方法适用于已经知道width的盒子,实现起来比较简单)

<div class="parent">
    <div class="child"></div>
</div>

//样式:

<style>
    .child {
        width: 50px;
        margin: 0 auto;
    }
</style>

第二种:text-align+inline-block   (这种方法适用于多种场景(width不固定))

<div class="parent">
    <div class="child"></div>
</div>

// 样式

<style>
    .parent {
        text-align: center;
    }
    .child {
        display: inline-block;
    }
</style>

第三种:float+position   (这种方法适用于多种场景(width不固定))

<div class="parent">
    <div class="between">
        <div class="child"></div>
    </div>
</div>


// 样式
<style>
    .between {
        position: relative;
        left: 50%;
        float: left;
    }
    .child {
        position: relative;
        right: 50%;
    }
</style>

第四种:这种方法适用于多种场景(width不固定)

<div class="parent">
    <div class="between">
        <div class="child"></div>
    </div>
</div>


// 样式
<style>
    .parent {
        position: relative;
    }
    .between {
        position: absolute;
        left: 50%;
    }
    .child {
        position: relative;
        right: 50%;
    }
</style>

第五种:flex这种方法适用于多种场景(width不固定)

<div class="parent">
    <div class="child"></div>
</div>

// 样式
<style>
   .parent {
        display: -webkit-box;
        -webkit-box-pack: center;
        -webkit-box-orient: horizontal;
    }
</style>

第六种:fit-content  这种方法适用于多种场景(width不固定)

<div class="parent">
    <div class="between">
	    <div class="child"></div>
    </div>
</div>


// 样式
<style>
   .between {
        width: -webkit-fit-content;
        margin: 0 auto;
    }

</style>

二、CSS实现盒子模型垂直居中的方法

第一种:position   (这种方法适用于已经知道width的盒子)

<div class="parent">
    <div class="child"></div>
</div>

.parent {
    position: relative;
    width: 200px;
    height: 200px;
}
 
.child {
    position: absolute;
    margin: 75px 0;
}

第二种:position+transform   (这种方法适用于已经知道width的盒子)

<div class="parent">
    <div class="child"></div>
</div>

.parent {
    position: relative;
    width: 200px;
    height: 200px;
}
 
.child {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
}

第三种:flex布局    (这种方法适用于多种场景(width不固定))

<div class="parent">
    <div class="child"></div>
</div>

.parent {
    display: flex;
    align-items: center;
}

第四种:table-cell布局   (这种方法适用于多种场景(width不固定))


<div class="parent">
    <div class="between">
        <div class="child"></div>
    </div>
</div>
.parent {
    display: table;
}
 
.between {
    display: table-cell;
    vertical-align: middle;
}

三、CSS实现盒子模型水平垂直居中方法

第一种:transform


<div class="parent">
    <div class="child"></div>
</div>

.parent {
    position: relative;
}
 
.child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

第二种: position: absolute;  margin: auto;

<div class="parent">
    <div class="child"></div>
</div>

.parent {
    position: relative;
}
 
.child {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

第三种:


<div class="parent">
    <div class="child"></div>
</div>

.parent {
    position: relative;
}
 
.child {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;    /* 自身 height 的一半 */
    margin-left: -25px;    /* 自身 width 的一半 */
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值