我正在为网页创建一个CSS样式表。我想要整个网页的渐变背景,但我无法弄清楚如何让渐变覆盖整个网页。现在,渐变是典型横幅的形式,通过网站向下复制,就像一个“条”在另一个上面。
关于如何解决这个问题的任何想法?
到目前为止我的代码:
body {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FBFF94), color-stop(1, #00A3EF));
}
答案 0 :(得分:1)
使用VH单位,这是一个垂直高度。
考虑
100vh = 100%。
body {
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FBFF94), color-stop(1, #00A3EF));
height:100vh; /* vh = Vertical Height */
}
答案 1 :(得分:0)
height
未在body
上设置。这应该会有所帮助:
body{
height:100%;
background:linear-gradient(to left bottom, #FBFF94, #00A3EF);
}
也许你还想要另一个margin:0;
。
但是再次使用%
height
并不会总是成功,这就是为什么你可能想要使用vh
。
答案 2 :(得分:0)
两个早期答案的组合应该有效:
body {
min-height: 100vh;
background: -webkit-linear-gradient(to left bottom, #FBFF94, #00A3EF);
background: linear-gradient(to left bottom, #FBFF94, #00A3EF);
}
或者:
body {
height: 100vh;
background: -webkit-linear-gradient(to left bottom, #FBFF94, #00A3EF);
background: linear-gradient(to left bottom, #FBFF94, #00A3EF);
background-attachment: fixed;
}