How about if you just use a tiny div above the red one that has a gradient from white to red like this:
Code:
.gradient {
/* fallback/image non-cover color */
background-color: #990000;
/* Firefox 3.6+ */
background-image: -moz-linear-gradient(#ffffff, #990000);
/* Safari 4+, Chrome 1+ */
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#990000));
/* Safari 5.1+, Chrome 10+ */
background-image: -webkit-linear-gradient(#ffffff, #990000);
/* Opera 11.10+ */
background-image: -o-linear-gradient(#ffffff, #990000);
}
</style>
dbc
Bookmarks