JSFiddle - React, Tailwind, and code Playground
by AashirKhan
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="each-candidates">
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>
CSS
.each-candidates{
text-align: center;
width: 265px;
height: 310px;
background: linear-gradient(to bottom , #db2431, purple);
}
.each-candidates:hover{
transition: background-color 1000ms;
-webkit-transition:background-color 1000ms;
background: linear-gradient(to bottom , purple,#db2431);
}