在身体上设置的CSS3渐变背景不会拉伸,而是重复?

时间:2010-05-19 20:40:23

标签: css css3 gradient

好吧,<body>内的内容总计300px。

如果我使用<body>-webkit-gradient

设置-moz-linear-gradient的背景

然后我最大化我的窗口(或者只是让它高于300px)渐变将正好是300px高(内容的高度),然后重复以填充窗口的其余部分。

我假设这不是一个bug,因为webkit和gecko都是一样的。

但有没有办法让渐变拉伸填充窗口而不是重复?

13 个答案:

答案 0 :(得分:651)

应用以下CSS:

html {
    height: 100%;
}
body {
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

修改:每个评论(Martin)为正文声明添加了margin: 0;

修改:每个评论(Johe Green)为正文声明添加了background-attachment: fixed;

答案 1 :(得分:155)

关于上一个答案,如果内容需要滚动,则将htmlbody设置为height: 100%似乎不起作用。将fixed添加到后台似乎可以解决问题 - 没有need for height: 100%;

E.g:

body {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cbccc8)) fixed;
}

答案 2 :(得分:15)

这就是我为解决这个问题所做的...它会显示内容全长的渐变,然后简单地回退到背景颜色(通常是渐变中的最后一种颜色)。

   html {
     background: #cbccc8;
   }
   body {
     background-repeat: no-repeat;
     background: #cbccc8;
     background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cbccc8));
     background: -moz-linear-gradient(top, #fff, #cbccc8);
     filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cbccc8');
   }
<body>
  <h1>Hello world!</h1>
</body>

我已经在FireFox 3.6,Safari 4和Chrome中对此进行了测试,我将背景颜色保留在体内,适用于任何因某些原因不支持H​​TML标记样式的浏览器。

答案 3 :(得分:13)

设置html { height: 100%}会对IE造成严重破坏。 Here's an example (png).但你知道什么有用吗?只需在<html>标记上设置背景即可。

html {
  -moz-linear-gradient(top, #fff, #000);
  /* etc. */
}

背景延伸到底部,并且不会发生奇怪的滚动行为。您可以跳过所有其他修复程序。这得到了广泛的支持。我还没有找到一个不允许你将背景应用于html标签的浏览器。它是完全有效的CSS并且已经有一段时间了。 :)

答案 4 :(得分:12)

此页面上有很多部分信息,但不完整。这是我的工作:

  1. 在此处创建渐变:http://www.colorzilla.com/gradient-editor/
  2. 在HTML而不是BODY上设置渐变。
  3. 使用“background-attachment:fixed;”
  4. 修复HTML背景
  5. 关闭BODY
  6. 上的上边距和下边距
  7. (可选)我通常创建一个<DIV id='container'>,我将所有内容都放在
  8. 以下是一个例子:

    html {  
      background: #a9e4f7; /* Old browsers */
      background: -moz-linear-gradient(-45deg,  #a9e4f7 0%, #0fb4e7 100%); /* FF3.6+ */
      background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#a9e4f7), color-stop(100%,#0fb4e7)); /* Chrome,Safari4+ */ 
      background: -webkit-linear-gradient(-45deg,  #a9e4f7 0%,#0fb4e7 100%); /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(-45deg,  #a9e4f7 0%,#0fb4e7 100%); /* Opera 11.10+ */
      background: -ms-linear-gradient(-45deg,  #a9e4f7 0%,#0fb4e7 100%); /* IE10+ */
      background: linear-gradient(135deg,  #a9e4f7 0%,#0fb4e7 100%); /* W3C */ 
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9e4f7', endColorstr='#0fb4e7',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    
      background-attachment: fixed;
    }
    
    body {
      margin-top: 0px;
      margin-bottom: 0px;
    }
    
    /* OPTIONAL: div to store content.  Many of these attributes should be changed to suit your needs */
    #container
    {
      width: 800px;
      margin: auto;
      background-color: white;
      border: 1px solid gray;
      border-top: none;
      border-bottom: none;
      box-shadow: 3px 0px 20px #333;
      padding: 10px;
    }
    

    已经在各种尺寸和滚动需求的网页上对IE,Chrome和Firefox进行了测试。

答案 5 :(得分:12)

我知道我迟到了,但这是一个更加坚定的答案。

您需要做的就是使用min-height: 100%;而不是height: 100%;,渐变背景将扩展视口的整个高度,而不会重复,即使内容可滚动。

像这样:

html {
    min-height: 100%;
}

body {
    background: linear-gradient(#ff7241, #ff4a1f);
}

答案 6 :(得分:3)

脏;也许你可以加一个最小高度:100%;到HTML和身体标签?那或者至少设置一个默认的背景颜色,也就是结束渐变颜色。

答案 7 :(得分:2)

我无法在这里找到答案 我发现在身体中修复一个全尺寸的div更好,给它一个负的z-index,并将渐变附加到它上面。

<style>

  .fixed-background {
    position:fixed;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1000;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .blue-gradient-bg {
    background: #134659; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(top, #134659 , #2b7692); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom, #134659, #2b7692); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(top, #134659, #2b7692); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom, #134659 , #2b7692); /* Standard syntax */
  }

  body{
    margin: 0;
  }

</style>

<body >
 <div class="fixed-background blue-gradient-bg"></div>
</body>

这是一个完整的样本 https://gist.github.com/morefromalan/8a4f6db5ce43b5240a6ddab611afdc55

答案 8 :(得分:0)

我使用过这个CSS代码,它对我有用:

html {
  height: 100%;
}
body {
  background: #f6cb4a; /* Old browsers */
  background: -moz-linear-gradient(top, #f2b600 0%, #f6cb4a 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2b600), color-stop(100%,#f6cb4a)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2b600 0%,#f6cb4a 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2b600 0%,#f6cb4a 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2b600 0%,#f6cb4a 100%); /* IE10+ */
  background: linear-gradient(top, #f2b600 0%,#f6cb4a 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2b600', endColorstr='#f6cb4a',GradientType=0 ); /* IE6-9 */
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  background-position: 0px 0px;
}

相关信息是您可以在http://www.colorzilla.com/gradient-editor/

创建自己的优秀渐变

/斯登

答案 9 :(得分:0)

在末尾添加一个空格和 fixed 这个词就足够了。无需设置高度。

body{
    background: linear-gradient(#e4efe9,#93a5cf) fixed;
}

答案 10 :(得分:-1)

background: #13486d; /* for non-css3 browsers */
background-image: -webkit-gradient(linear, left top, left bottom, from(#9dc3c3),   to(#13486d));  background: -moz-linear-gradient(top,  #9dc3c3,  #13486d);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dc3c3', endColorstr='#13486d');
background-repeat:no-repeat;

答案 11 :(得分:-1)

这就是我所做的:

html, body {
height:100%;
background: #014298 ;
}
body {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5c9cf2), color-stop(100%,#014298));
background: -moz-linear-gradient(top, rgba(92,156,242,1) 0%, rgba(1,66,152,1) 100%);
background: -o-linear-gradient(top, #5c9cf2 0%,#014298 100%);

/*I added these codes*/
margin:0;
float:left;
position:relative;
width:100%;
}

在我漂浮身体之前,顶部有一个间隙,它显示了html的背景颜色。如果我删除html的bgcolor,当我向下滚动时,会切割渐变。所以我漂浮了身体并将它的位置设置为相对,宽度设置为100%。它适用于safari,chrome,firefox,opera,internet expl ..哦等等。 :P

你觉得怎么样?

答案 12 :(得分:-4)

而不是100%我只是添加一些pixxel现在得到这个,它适用于整页无间隙:

html {     
height: 1420px; } 
body {     
height: 1400px;     
margin: 0;     
background-repeat: no-repeat; }