Here you go.
A browser that does not support CSS3 gradients just uses an image.
div { background-color: #1a82f7; background-image: url(images/linear_bg_2.png); 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 this in CSS tricks
source share