定位居中0.5px偏差

定位居中0.5px偏差

很久没手写css了,
今日遇到一个自己感觉莫名奇妙的问题,
仔细研究,却深有韵味。

需求是,divA居中页面,B要作为遮罩层定位在A的上面。

代码块

我用了常用的写居中定位的方式:

<div class='answer_content'>
    <div class="answer_contentBox">这是divA</div>
    <div class="answer_contentBox answer_contentBox_gray">这是divB</div>
</div>
.answer_content{
    position: relative;
    width: 100%;
    height: 287px;
}
.answer_contentBox{
    width: 335px;
    height: 287px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    color: #666;
}
.answer_contentBox_gray{
    position: absolute;
    background: #333;
    opacity: .8;
    color: #fff;
    top: 0;
    left:50%;
    transform: translateX(-50%);
}

0.5像素偏差效果

大家会发现,灰色的遮罩层左边居然有0.5像素偏差!!!

后来本宝宝找到了原因。
出现0.5px

注意:可以看到,left:50%,是根据手机宽度来的。因为定位的divB的父元素的宽度是body的宽度,手机宽度的50%就会出现0.5px。当然不同屏幕大小的手机,情况不一,有的会在右边出现偏差。

解决方案

咱们换一种写定位居中的方式就好了:

.answer_contentBox_gray{
    position: absolute;
    background: #333;
    opacity: .8;
    color: #fff;
    top: 0;
    left:0;
    right:0;
    margin:0 auto
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值