JSFiddle - React, Tailwind, and code Playground
by Pratik Galoria
HTML
<div class="skillsDouble">
<ul>
<li><a href="#">Automation</a>
</li>
</ul>
</div>
<!--End skills double-->
CSS
ul {
list-style-type:none;
}
ul li a {
text-decoration:none;
}
.skillsDouble {
float: left;
margin-right: 1px;
}
.skillsDouble li {
width:100px;
padding: 11px 16px;
text-align:center;
float:left;
background: #ff3232;
/* Old browsers */
background: linear-gradient(45deg, red 50%, blue 50%);
background-size: 300% 100%;
margin-left:10px;
transition:all .3s ease-out;
}
.skillsDouble li:hover {
background-position:right bottom;
}
.skillsDouble li a {
color:white;
}