CSS - Background Gradient
Simple CSS with all browser support
HTML
<div class="bg"/>
CSS
div{
width: 400px;
height: 200px;
margin: 10px;
}
.bg
{
/* background: #356aa0; */ /* Old browsers */
background-image: linear-gradient(#E8D7EA, #fff7f7);
background: linear-gradient(left, #E8D7EA 0%, #fff7f7 40%); /* FF3.6+ */
}