背景渐变 - 填充页面没有滚动条或重复

时间:2012-09-18 05:09:10

标签: css css3 gradient

我有一个背景渐变,它看起来很棒,但我有一个问题,在短页面上背景太长并导致不必要的滚动条,在长页面上,背景将开始重复而不是拉伸以填充整个页面。

这是我正在使用的CSS:

html, body{
font-size:1em;
font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
line-height:1.438em;
color:#222;
margin: 0;
padding: 0;
text-align: justify;
background: rgb(0,0,0); /* Old browsers */
background: -moz-linear-gradient(top, rgba(0,0,0,1) 25%, rgba(209,209,209,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,rgba(0,0,0,1)), color-stop(100%,rgba(209,209,209,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#d1d1d1',GradientType=0 ); /* IE6-9 */

}

当我添加height: 100%;时,它会导致短页面上的滚动条。我尝试使用overflow: hidden;删除它们,但这导致长页面上的任何内容都无法显示!此外,如果我不使用height: 100%;,则渐变仅填充页面的一半并重复。

我对于该怎么做或试图解决这个问题感到有点困惑。

注意:虽然我更喜欢CSS解决方案,如果有一个javascript解决方案(使用jQuery)工作,我愿意尝试让它工作。

3 个答案:

答案 0 :(得分:2)

导致此问题的原因是我尝试实施“粘性页脚”。我删除了所有高度要求(IE:min-heightheight),浏览器会相应调整而不会出现问题。

作为旁注,我使用以下代码来解决粘性页脚问题:

$(function() {
    var height = $(window).height() - ($("header").outerHeight() + $("footer").outerHeight() );
    $("#page-content").css("min-height",height+"px");
});

答案 1 :(得分:0)

..........................

你好习惯min-height:100%

Live demo

答案 2 :(得分:0)

height: 100%;添加到您的CSS规则中,它将被修复。