gpt4 book ai didi

html - 底部出现灰色部分

转载 作者:行者123 更新时间:2023-11-28 18:00:09 25 4
gpt4 key购买 nike

我正在制作一个社交网络,我正在使用 linear-gradient(#dadae3, white)。这有效,但是底部显示了颜色 #dadae3 的部分。我没有此部分的元素。

截图:

enter image description here

我正在寻找摆脱这个灰色部分的解决方案。谢谢!

最佳答案

由于缺少 height,您的背景渐变只是在那里重复body 元素的 (我假设你在 body 元素上使用渐变),还要确保你已经设置了你的 background-repeat不重复

Demo

html, body {
height: 100%; /* Setting both the elements height to 100% */
}

body {
background-repeat: no-repeat;
/* mmmm not required as we have set to fixed but than too no harm using it */
background-attachment: fixed; /* Fixes background for you */
background: linear-gradient(#dadae3, white);
}

关于html - 底部出现灰色部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20597932/

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