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?
|
|
Yes, you can.
These 2 lines are the fallback for any browser that doesn't do gradients. See notes for stacking images only IE < 9 below.
The rest set a background image and gradient for specific browsers.
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:
|
|||||||||||||||||||||
|
|
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.
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. |
||||
|
|
|
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/ |
|||
|
|
|
If you also want to set background position for your image, than you can use this:
or you can also create a LESS mixin (bootstrap style):
|
|||
|
|
|
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 |
||||
|
|
|
I resolve the problem in that way. I define Gradient in HTML and background image in the Body
|
|||
|
|
|
You can try using multiple backgrounds (CSS3 feature). Details in http://designshack.co.uk/articles/introduction-to-css3-part-6-backgrounds. |
|||
|
|
As a sure method way, you can just make a background image that is say 500x5 pixels, in your
Where You could also fix this to the bottom of the screen and have it match the initial gradient color. |
||||
|
|
|
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:
Notice that you use the 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. |
||||
|
|
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.
