Displays a blue gradient as a background
by santosh_patnala
HTML
<div id="color"> </div>
CSS
#color{
width: 600px;
height:600px;
background: -moz-linear-gradient(-45deg, #1badd5ff 0%, #0b0051ff 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#1badd5ff), color-stop(100%,#0b0051ff)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg, #1badd5ff 0%,#0b0051ff 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg, #1badd5ff 0%,#0b0051ff 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg, #1badd5ff 0%,#0b0051ff 100%); /* IE10+ */
background: linear-gradient(135deg, #1badd5ff 0%,#0b0051ff 100%); /* W3C */
}