A linear gradient that starts at top left (and goes to bottom right): - HTML CSS CSS

HTML CSS examples for CSS:Color

Description

A linear gradient that starts at top left (and goes to bottom right):

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
#grad1 {<!--from  w w w  . ja v a  2  s  .  co  m-->
    height: 200px;
    background: -webkit-linear-gradient(left top, yellow,blue,black,pink); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom right, yellow,blue,black,pink); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom right, yellow,blue,black,pink); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, yellow,blue,black,pink); /* Standard syntax (must be last) */
}
</style>
</head>
<body>

<div id="grad1"></div>

</body>
</html>

Related Tutorials