gpt4 book ai didi

css - Div background-image 有 x Scroll 我需要删除

转载 作者:太空宇宙 更新时间:2023-11-04 07:51:43 27 4
gpt4 key购买 nike

我有一个应该有背景图像的 div。图像分辨率很高,我需要它来获取屏幕尺寸视口(viewport)的宽度/高度。上下滚动就OK了。

问题是我正在向右/向左滚动,我需要将其删除以便图像填满整个屏幕而没有任何 x 滚动。我放了 overflow-x:hidden; 但滚动仍然存在。甚至 overflow:hidden; 也没有成功。

#bgImg{

background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/header.jpg");
background-size: cover;
background-position: center;
/* background-repeat: no-repeat; */
height: 100vh;
max-width: 100vw;
overflow-x:hidden;
/* padding-bottom: 30px; */
}

最佳答案

您需要从 body 元素中移除 margin/padding 并在 parent container 而不是具有背景的元素上应用 overflow 属性(如果需要):

body {
margin:0;
padding:0;
}

关于css - Div background-image 有 x Scroll 我需要删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47710066/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com