美文网首页
fixed,absolute 布局使用width:100%超出屏

fixed,absolute 布局使用width:100%超出屏

作者: 晓函 | 来源:发表于2021-02-19 14:33 被阅读0次

    在使用fixed,absolute 布局时,如果设置了左右方向的marg,pad等,在使用width:100%,会超出屏幕宽度,最终的实际宽度等于全屏宽度+pading值。


    超出宽度

    因为这是box模型默认是padding-box,100%宽度不包含padding值。

    解决

    我们只需要加上box-sizing: border-box;

    .bottom-bar{
        position: absolute;
        bottom: 0;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    修改后

    相关文章

      网友评论

          本文标题:fixed,absolute 布局使用width:100%超出屏

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