A linear gradient that starts from the left. It starts red, transitioning to blue: - HTML CSS CSS

HTML CSS examples for CSS:Color

Description

A linear gradient that starts from the left. It starts red, transitioning to blue:

Demo Code

ResultView the demo in separate window

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

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

</body>
</html>

Related Tutorials