test
by warriormole
HTML
<div class="back">
<div class="test">
</div>
</div>
CSS
.back{
position: absolute; padding: 100px 100px 100px 100px;
width:100%; height:100%;
background-color: black;
}
.test{
height:100px;
width:300px;
background-color: #a9c0c8;
/*
background-image: -webkit-gradient(linear, left top, left bottom, from(#d4dee1), to(#a9c0c8));
background-image: -webkit-linear-gradient(top, #d4dee1, #a9c0c8);
background-image: -moz-linear-gradient(top, #d4dee1, #a9c0c8);
background-image: -ms-linear-gradient(top, #d4dee1, #a9c0c8);
background-image: -o-linear-gradient(top, #d4dee1, #a9c0c8);
background-image: linear-gradient(to bottom, #d4dee1, #a9c0c8);filter:progid:DXImage Transform.Microsoft.gradient(GradientType=0,startColorstr=#d4dee1, endColorstr=#a9c0c8);
*/
}