首页 前端知识 【前端样式】h5页面移动端上下两个相邻的div中间出现缝隙

【前端样式】h5页面移动端上下两个相邻的div中间出现缝隙

2024-02-23 11:02:47 前端知识 前端哥 858 880 我要收藏

出现的问题如下:
在这里插入图片描述

在某些移动设备尺寸下,两个相邻的div中间出现一条白线

上半部分div的样式

.header-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: calc(0px + 11px);
    z-index: 200;
    background: #000000;
}

下半部分div的样式

.page-wapper {
    width: 100%;
}

可以通过给上半部分div的样式 添加 margin-bottom: -1px;来解决

解决后的样式如下:

.header-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -1px;
    padding-top: calc(0px + 11px);
    z-index: 200;
    background: #000000;
}

更改后的效果:
在这里插入图片描述

转载请注明出处或者链接地址:https://www.qianduange.cn//article/2563.html
标签
评论
发布的文章

程序员的中秋节

2024-03-09 09:03:01

js中几种追加元素的方法

2024-03-08 10:03:38

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!