Linear gradients with CSS - example 2
by danielkwood
HTML
<html>
<head>
<title>Linear gradients</title>
<link rel="stylesheet" href="theme.css" type="text/css"/>
</head>
<body>
<div class="gradient">
</div>
</body>
</html>
CSS
.gradient{
width: 100%;
height: 300px;
background: linear-gradient(164deg, rgba(125, 135, 230, 1) 0%, rgba(245, 140, 255, 1) 50%, rgba(255, 220, 50, 1) 100%);
}