只是將漸變背景應用到延伸過摺疊的網頁中。漸變起作用,並且看起來很完美,直到頁腳高度爲10像素的高度差爲漸變起點的顏色。這樣看來梯度被「重複」HTML背景漸變重複
http://s30.postimg.org/6r64lcqkx/problem.png
在那裏,它是。我已經嘗試了HTML /身高修復又名:
CSS:
html {
height:100%
}
body {
min-height:100%;
}
但只是使事情通過在窗口的確切高度重複的梯度差。
這裏是目前的身體元素的代碼
CSS:
body {
background: #650000; /* Old browsers */
background: -moz-linear-gradient(top, #650000 0%, #d40000 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#650000), color-stop(100%,#d40000)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #650000 0%,#d40000 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #650000 0%,#d40000 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #650000 0%,#d40000 100%); /* IE10+ */
background: linear-gradient(to bottom, #650000 0%,#d40000 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#650000', endColorstr='#d40000',GradientType=0); /* IE6-9 */
font-family: 'helveticaneue_bold';
font-size:11px;
}
禮貌Wijnand的:http://jsfiddle.net/ey7kfog3/
添加的jsfiddle與您的代碼。它是更容易幫助與實際代碼,不只是一個圖像.. :-) – rblarsen 2014-09-24 14:04:47
我做了一個小提琴:http://jsfiddle.net/ey7kfog3/ – 2014-09-24 14:08:48
乾杯Wijnand,添加到帖子。 – BITmixit 2014-09-24 14:12:02