ok say the content inside the <body> totals 300px high.

If I set the background of my <body> using -webkit-gradient or -moz-linear-gradient

Then I maximize my window (or just make it taller than 300px) the gradient will be exactly 300px tall (the height of the content) and just repeat to fill the rest of the window.

I am assuming this is not a bug since it is the same in both webkit and gecko.

But is there a way to make the gradient stretch to fill the window instead of repeat?

link|improve this question

feedback

10 Answers

up vote 103 down vote accepted

Apply the following CSS:

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

Edit: Added margin: 0; to body declaration per comments (Martin).

Edit: Added background-attachment: fixed; to body declaration per comments (Johe Green).

link|improve this answer
1  
I also found out that I needed to add margin:0; on body or else I got a gap at the bottom of my page. – Martin Dec 15 '10 at 12:18
Interesting. What browser? You may want to use a CSS reset. – Bryan Downing Dec 16 '10 at 20:36
4  
In Chrome and Safari, body { height: 100% } results in the page (but not the gradient) extending down out of the viewport. – thSoft Dec 17 '10 at 10:46
@thSoft - Add margin: 0; to the body declaration as @Martin stated. I was able to verify this fix for Chrome 8 on Win XP. – Bryan Downing Dec 17 '10 at 22:07
2  
I had to add a background-attachment: fixed; to the body to get rid of the bottom gap (Webkit). – Johe Green Sep 20 '11 at 11:19
show 5 more comments
feedback

Regarding a previous answer, setting html and body to height: 100% doesn't seem to work if the content needs to scroll. Adding "fixed" to the background seems to fix that - no need for height: 100%;

E.g., background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cbccc8)) fixed;

link|improve this answer
That does it. Thanks. – Owais Lone Feb 26 '11 at 20:12
This worked for me in every browser I tested (Chrome [Mac], Safari [Mac], Firefox [Mac/Win7], IE9 [Win7] and Opera [Mac]) without the scrollbar side effect of the "height: 100%" solution. Thanks! – pipwerks May 9 '11 at 17:11
2  
A note for those people using Sass/Compass. You can't set "fixed" directly in the mixin so to add fixed you add the property background-attachment: fixed – Kyle Mathews Sep 3 '11 at 20:11
feedback

Here's what I did to solve this problem... it will show the gradient for the full length of the content, then simply fallback to the background color (normally the last color in the gradient).

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'); }

I've tested this in FireFox 3.6, Safari 4, and Chrome, I keep the background-color in the body for any browsers that for some reason don't support styling the HTML tag.

link|improve this answer
feedback

Dirty; maybe could you just add a min-height: 100%; to the html, and body tags? That or at least set a default background color that is the end gradient color as well.

link|improve this answer
The default background set as the end gradient color would be a great solution if the gradient stopped, but it doesn't just stop it repeats so the default background would only be seen if the gradient is unsupported. – John Isaacks May 19 '10 at 21:09
feedback

Setting html { height: 100%} can wreak havoc with IE. Here's an example (png). But you know what works great? Just set your background on the <html> tag.

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

Background extends to the bottom and no weird scrolling behavior occurs. You can skip all of the other fixes. And this is broadly supported. I haven't found a browser that doesn't let you apply a background to the html tag. It's perfectly valid CSS and has been for a while. :)

link|improve this answer
feedback
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;
link|improve this answer
feedback
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'); 
}

I use this tag but it repeats in body & don't comes in full body.

link|improve this answer
feedback

instead of 100% i just add some pixxel got this now and it works for whole page without gap:

html {     
height: 1420px; } 
body {     
height: 1400px;     
margin: 0;     
background-repeat: no-repeat; }
link|improve this answer
1  
what about pages with > 1420 px in height? – veritas Aug 11 '11 at 9:42
feedback

this is what I did:

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%;
}

before I floated the body, there was a gap on top, and it was showing the background color of html. if I remove the bgcolor of html, when I scroll down, the gradient is cut. so I floated the body and set it's position to relative and the width to 100%. it worked on safari, chrome, firefox, opera, internet expl.. oh wait. :P

what do you guys think?

link|improve this answer
feedback

I have used this CSS code and it worked for me:

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;
}

A related information is that you can create your own great gradients at http://www.colorzilla.com/gradient-editor/

/Sten

link|improve this answer
feedback

protected by Community Aug 11 '11 at 21:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.