Does the line of code below need repetition? When i remove the duplicate, it does not seem to work.
div.first { height: 150px; width: 200px; color: #FFF; background: -moz-radial-gradient(top left, green, yellow, blue); background: -webkit-radial-gradient(top left, green, yellow, blue); background: -ms-radial-gradient(top left, green, yellow, blue); } div.second { height: 150px; width: 200px; color: #FFF; background: -moz-radial-gradient(green 5%, yellow 15%, blue 60%); background: -webkit-radial-gradient(green 5%, yellow 15%, blue 60%); background: -ms-radial-gradient(green 5%, yellow 15%, blue 60%); } ...,...................... The HTML CODE <div class="first">Top Left</div> <br /> <div class="second">In Percentages</div> .......................... This is a code lesson from CSS under Gradient &Background >Radial Gradient Position