gpt4 book ai didi

css - 元素在底部不希望有边距

转载 作者:太空宇宙 更新时间:2023-11-04 05:35:40 25 4
gpt4 key购买 nike

    .home{
height: 100vh;
&__logo{
margin: 5vh auto 4.5rem auto;
display: flex;
justify-content: center;
svg{
height: 2rem;
}
}
&__container{
display: flex;
flex-direction: column;
}

&__text{
display: flex;
flex-direction: column;
justify-content: space-between;
background-position: left;
align-items: center;
&--h1{
margin: 2rem 1.5rem;
text-align: center;

}
&--btn{
button{
padding:1.2rem 3rem;
}
}


}

&__img{
margin-top: 5rem;
width: 95vw;
position: relative;
right: 2rem;
height: 60vh;

img{
width: 100%;
height: 100%;
}

&--1{
display: none;

}

}
}

我在图像下方得到了一个边缘,我无法摆脱。我希望图像保持在屏幕底部的大小,而不是让用户滚动。

它不应该有任何边距或滚动。我想让图像恰好位于屏幕底部 enter image description here

最佳答案

一个可能的原因是您的 body 在所有方向上都有一个 margin。你可以使用

body { margin: 0 }

删除它并重试。此外,使用开发人员工具检查您的元素,以查看 htmlbody 和容器的计算宽度和高度,直至您的 img。查看值(并检查边距和填充),尤其是图像滚动时的高度和垂直边距和填充。

你也可以使用calc():

img { height: calc(100% - 16px) }

这样你的头像就没那么高了。

关于css - 元素在底部不希望有边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59703634/

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