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 −

Live Demo

<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

Updated on: 29-Jun-2020

48 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements