Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use CSS3 gradients for my background color and then apply a background-image to apply some sort of light transparent texture. Is this possible?

share|improve this question
Ronald, you may want to mark Gidgidonihah's answer as the correct one. – jholster Dec 8 '10 at 15:01
I have a transparent .png that repeats itself, I have set the background gradient to go from white to transparent, I wish it also took the image and applied this filter to it. – user569394 Jan 10 '11 at 5:26
5  
note: you can also position the background image(15px center) or set it's 'repeat' property this way (example works for Firefox 3.6+) .some-class {background: url("../icon.png") no-repeat 15px center, -moz-linear-gradient(center top , #FFFFFF, #DDDDDD);} – Julien Bérubé Dec 29 '11 at 17:53

9 Answers

up vote 458 down vote accepted

Yes, you can.

background: #6cab26;
background-image: url(IMAGE_URL); /* fallback */
background-image: url(IMAGE_URL), -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999)); /* Saf4+, Chrome */
background-image: url(IMAGE_URL), -webkit-linear-gradient(top, #444444, #999999); /* Chrome 10+, Saf5.1+ */
background-image: url(IMAGE_URL),    -moz-linear-gradient(top, #444444, #999999); /* FF3.6+ */
background-image: url(IMAGE_URL),     -ms-linear-gradient(top, #444444, #999999); /* IE10 */
background-image: url(IMAGE_URL),      -o-linear-gradient(top, #444444, #999999); /* Opera 11.10+ */
background-image: url(IMAGE_URL),         linear-gradient(top, #444444, #999999); /* W3C */

These 2 lines are the fallback for any browser that doesn't do gradients. See notes for stacking images only IE < 9 below.

  • Line 1 sets a flat background color.
  • Line 2 sets the background image fallback.

The rest set a background image and gradient for specific browsers.

  • Line 3 is for old webkit browsers.
  • Line 4 is for newer webkit browsers.
  • Line 5 is for Firefox 3.6 and up.
  • Line 6 is for Internet Explorer 10.
  • Line 7 is for Opera 11.10 and up.
  • Line 8 is what one day all the browsers will hopefully use.

See http://www.w3.org/TR/css3-background/#layering for more information about it.

Also see http://css3please.com for cross-browser css3 templating. Currently it doesn't allow you to do multiple backgrounds with gradients, but it gives you the browser prefixes and is kept up to date.

Stacking images ONLY (no gradients in the declaration) For IE < 9

IE9 and up can stack images this same way. You could use this to create a gradient image for ie9, though personally, I wouldn't. However to be noted when using only images, ie < 9 will ignore the fallback statement and not show any image. This does not happen when a gradient is included. To use a single fallback image in this case I suggest using Paul Irish's wonderful Conditional HTML element along with your fallback code:

.lte9 #target{ background-image: url(IMAGE_URL); }
share|improve this answer
14  
Thanks for your answer, any ideas of how to then control the background-position just for the image and not the gradient? – adardesign Jul 7 '10 at 18:13
17  
thanks for this, excellent information. | @adardesign: use the background shorthand. Modifying the above example, it would be: background: url(IMAGE_URL) no-repeat left top, [appropriate-gradient]; – RussellUresti Jul 16 '10 at 16:39
3  
+1. I almost missed the comma after url(IMAGE_URL). It works now. Excellent tip. – Darragh Mar 9 '11 at 11:23
3  
This is great but doesn't work in IE 6-9. Any ideas? – Zoolander Aug 11 '11 at 15:25
4  
@adardesign : background: url("../images/icon.png") no-repeat 15px center, -moz-linear-gradient(center top , #FFFFFF, #DDDDDD);/*notice 15px center, it will add a 15px left padding and vertically align in the center the icon.png*/ – Julien Bérubé Dec 29 '11 at 17:49
show 13 more comments

I had an implementation where I needed to take this technique a step farther, and wanted to outline my work. The below code does the same thing but uses SASS, Bourbon, and an image sprite.

    @mixin sprite($position){
        @include background(url('image.png') no-repeat ($position), linear-gradient(#color1, #color2));
    }
    a.button-1{
        @include sprite(0 0);
    }
    a.button-2{
       @include sprite (0 -20px);  
    }
    a.button-2{
       @include sprite (0 -40px);  
    }

SASS and Bourbon take care of the cross browser code, and now all I have to declare is the sprite position per button. It is easy to extend this principal for the buttons active and hover states.

share|improve this answer

One thing to realize is that the first defined background image is topmost in the stack. The last defined image will be bottommost. That means, to have a background gradient behind an image, you would need:

body {
    background-image: 
        url("/images/myImage.png");
        -webkit-gradient(linear, left top, left bottom,
            from(red),
            to(yellow);
        -moz-linear-gradient(top,
            red, yellow;
}

You could also define background positions and background size for the images. I put together a blog post about some interesting things you can do with CSS3 gradients: http://css3wizardry.com/2010/08/19/css3-gradients-and-patterns/

share|improve this answer

If you also want to set background position for your image, than you can use this:

background-color: #444; // fallback
background-image: url('PATH-TO-IMG') center center no-repeat; // fallback

background: url('PATH-TO-IMG') center center no-repeat, -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
background: url('PATH-TO-IMG') center center no-repeat, -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
background: url('PATH-TO-IMG') center center no-repeat, -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background: url('PATH-TO-IMG') center center no-repeat, -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
background: url('PATH-TO-IMG') center center no-repeat, linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10

or you can also create a LESS mixin (bootstrap style):

#gradient {
    .vertical-with-image(@startColor: #555, @endColor: #333, @image) {
        background-color: mix(@startColor, @endColor, 60%); // fallback
        background-image: @image; // fallback

        background: @image, -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
        background: @image, -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
        background: @image, -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
        background: @image, -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
        background: @image, linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10
    }
}
share|improve this answer

I was trying to do the same thing. While background-color and background-image exist on separate layers within an object -- meaning they can co-exist -- CSS gradients seem to co-opt the background-image layer.

From what I can tell, border-image seems to have wider support than multiple backgrounds, so maybe that's an alternative approach.

http://articles.sitepoint.com/article/css3-border-images

UPDATE: A bit more research. Seems Petra Gregorova has something working here --> http://petragregorova.com/demos/css-gradient-and-bg-image-final.html

share|improve this answer
Petra Gregorovas thing worked for me! – matpol Oct 11 '11 at 10:44

I resolve the problem in that way. I define Gradient in HTML and background image in the Body

html{
background-image: -webkit-gradient(
linear,
left bottom,
right top,
color-stop(0.31, rgb(227,227,227)),
color-stop(0.66, rgb(199,199,199)),
color-stop(0.83, rgb(184,184,184))
);
background-image: -moz-linear-gradient(
left bottom,
rgb(227,227,227) 31%,
rgb(199,199,199) 66%,
rgb(184,184,184) 83%
);
height:100%
}
body {
background: url(../_img/picture.png);
height:100%
}
share|improve this answer

You can try using multiple backgrounds (CSS3 feature).

Details in http://designshack.co.uk/articles/introduction-to-css3-part-6-backgrounds.

share|improve this answer
to save time, the link to the post is petragregorova.com/css3-gradient-background-image – chepe263 Apr 13 '12 at 21:01

As a sure method way, you can just make a background image that is say 500x5 pixels, in your css use:

background-img:url(bg.jpg) fixed repeat-x;
background:#<xxxxxx>;

Where xxxxxx corresponds with the color that matches the final gradient color.

You could also fix this to the bottom of the screen and have it match the initial gradient color.

share|improve this answer

If you have to get gradients and background images working together in IE 9 (HTML 5 & HTML 4.01 Strict), add the following attribute declaration to your css class and it should do the trick:

filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#000000', endColorstr='#ff00ff'), progid:DXImageTransform.Microsoft.AlphaImageLoader(src='[IMAGE_URL]', sizingMethod='crop');

Notice that you use the filter attribute and that there are two instances of progid:[val] separated by a comma before you close the attribute value with a semicolon. Here's the fiddle. Also notice that when you look at the fiddle the gradient extends beyond the rounded corners. I don't have a fix for that other not using rounded corners. Also note that when using a relative path in the src [IMAGE_URL] attribute, the path is relative to the document page and not the css file (See source).

This article (http://coding.smashingmagazine.com/2010/04/28/css3-solutions-for-internet-explorer/) is what lead me to this solution. It's pretty helpful for IE-specific CSS3.

share|improve this answer

protected by Kev Oct 21 '12 at 22:57

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.