开发者

Is there a way to use CSS3 gradients and fallback to a PNG?

How would one use CSS3 gradients for a background im开发者_运维百科age, and fallback to a PNG image if the gradients were not supported?


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜