gpt4 book ai didi

html - 全屏背景颜色css3

转载 作者:技术小花猫 更新时间:2023-10-29 11:47:51 25 4
gpt4 key购买 nike

enter image description here我有一个渐变作为背景颜色,但它只是重复。我希望渐变拉伸(stretch)到全屏,这样就不可能缩小并看到任何空白或重复的渐变。

这是我的 body 的CSS

body {
text-align:center;
background: rgb(238,238,238); /* Old browsers */
background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(89,89,89,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,238,238,1)), color-stop(100%,rgba(89,89,89,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(89,89,89,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(89,89,89,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(89,89,89,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(89,89,89,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#595959',GradientType=0 ); /* IE6-9 */
}

最佳答案

尝试在 body 上设置高度和宽度,并尝试使用 background-attachment:

html, body
{
width: 100%;
height: 100%;
}
body
{

width: 100%;
height: 100%;
background-attachment: fixed;
}

关于html - 全屏背景颜色css3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14938742/

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