我使用漸變作爲背景,並將其延伸至頁面的盡頭,但在滾動/溢出開始重複之後。即使在滾動之後,我如何將漸變拉伸到頁面的底部?在溢出時重複使用CSS背景漸變
html
{
height:100%;
width:100%;
}
body
{
margin:0;
padding:0;
width:100%;
height:100%;
min-height:100%;
background-repeat:no-repeat;
background-attachment: fixed;
background: rgb(242,245,246); /* Old browsers */
background: -moz-linear-gradient(top, rgba(242,245,246,1) 0%, rgba(227,234,237,1) 37%, rgba(200,215,220,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(242,245,246,1)), color-stop(37%,rgba(227,234,237,1)), color-stop(100%,rgba(200,215,220,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(242,245,246,1) 0%,rgba(227,234,237,1) 37%,rgba(200,215,220,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(242,245,246,1) 0%,rgba(227,234,237,1) 37%,rgba(200,215,220,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(242,245,246,1) 0%,rgba(227,234,237,1) 37%,rgba(200,215,220,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(242,245,246,1) 0%,rgba(227,234,237,1) 37%,rgba(200,215,220,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f5f6', endColorstr='#c8d7dc',GradientType=0); /* IE6-9 */
}
好吧,發現。這是最好的答案。 – sideroxylon 2015-02-23 05:42:26
好的回答@亞歷山大 – Sachin 2015-02-23 05:46:02
很好的回答!此外,你可以使用** background-image **而不是* background *;那麼訂單就無關緊要了。 – vals 2015-02-23 06:24:26