6

在此处输入图像描述我有一个渐变作为背景颜色,但它只是重复。我希望渐变拉伸到全屏,因此无法缩小并看到任何空白或重复渐变。

这是我的身体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 */
}
4

3 回答 3

13

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

html, body
{
    width: 100%;
    height: 100%;
}
body
{
    …
    width: 100%;
    height: 100%;
    background-attachment: fixed;
}
于 2013-02-18T14:47:03.617 回答
3

我将您的代码粘贴在测试页面中,它似乎完全符合您的要求。如果您遇到问题,也许您可​​以尝试添加background-size: 100%;

希望能帮助到你。

于 2013-02-18T14:43:42.790 回答
0

以下对我有用:

body
{
...
background-size: cover;
}
于 2022-02-21T12:46:20.107 回答