css布局系列 -- (二)宽度或高度不固定垂直居中和水平居中

1.高度不固定-单个元素垂直居中

<div class="box">
    <div class="content">高度不固定</div>
</div>
.box{
    background: #f0f0f0;
    height: 400px;
    position: relative;
}
/*缺点:要用到 transform ,兼容性较差(不太准确)*/
.content{
    background: #0fbdce;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

方法二:

.box{
    background: #f0f0f0;
    height: 400px;
    display: table-cell;
    vertical-align: middle;
}
.content{
    background: #0fbdce;
}

2.宽度不固定--单个元素水平居中

<div class="box">
    <div class="content">宽度不固定</div>
</div>
.box{
    background: #b0b0b0;
    height: 100%;
}
/*缺点:设置为表格元素,内部元素的布局有可能收到影响*/
.content{
    display: table;
    margin: 0 auto;
    background: #00009b;
    color: white;
}

方法二:

.box{
    background: #b0b0b0;
    height: 100%;
    position: relative;
}
/*缺点:要用到 transform ,兼容性较差*/
.content{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #00009b;
    color: white;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值