up vote 3 down vote favorite
share [g+] share [fb]

How would one use CSS3 gradients for a background image, and fallback to a PNG image if the gradients were not supported?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Here you go.

Browser who do not support CSS3 gradients will just use the image.

div {
            background-color: #1a82f7; /* fallback color */
            background-image: url(images/linear_bg_2.png); /* fallback image */
            background-image: -moz-linear-gradient(100% 100% 90deg, #2F2727, #1a82f7);
            background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1a82f7), to(#2F2727));
}

Blog post about it on CSS Tricks

link|improve this answer
feedback

try this online:::

http://www.display-inline.fr/projects/css-gradient/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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