我目前正在尝试为我正在设计的网站制作一个背景,该背景是一直到页面底部的渐变,但目前它每次到达我的屏幕底部时都会重复。我正在使用代码:
html {
height: 2520;
}
body {
height: 2500px;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
background: -moz-linear-gradient(top left, white, #a6f2c0 30%, rgba(180, 200, 210, .9), black);
background: -ms-linear-gradient(top left, white, #a6f2c0 30%, rgba(180, 200, 210, .9), black);
background: -o-linear-gradient(top left, white, #a6f2c0 30%, rgba(180, 200, 210, .9), black);
background: -webkit-gradient(linear, 0 0, 100% 100%, from(white), color-stop(0.3, #a6f2c0), color-stop(0.65, rgba(180, 200, 210, .9)), to(black));
background: -webkit-linear-gradient(top left, white, #a6f2c0 30%, rgba(180, 200, 210, .9), black);
background: linear-gradient(top left, white, #a6f2c0 30%, rgba(180, 200, 210, .9), black);
}
我想知道是否不可能使渐变永不重复。请让我知道它是否可以完成,如果可以,如何完成。先感谢您!