Computer >> Computer tutorials >  >> Programming >> CSS

Arrange two or more colors in linear formats using CSS3 Gradients


Linear gradients are used to arrange two or more colors in linear formats.

Example

You can try to run the following code to implement linear gradients in CSS3 −

<html>
   <head>
      <style>
         #grad1 {
            height: 100px;
            background: -webkit-linear-gradient(pink,green);
            background: -o-linear-gradient(pink,green);
            background: -moz-linear-gradient(pink,green);
            background: linear-gradient(pink,green);
         }
      </style>
   </head>
   <body>
      <div id = "grad1">
      </div>
   </body>
</html>

Output

Arrange two or more colors in linear formats using CSS3 Gradients