What I try to do is to leave a background shadow that goes from left to right. The background what it does is give it another background color, but instead of it appearing, it moves. modify everything. Now I did this:
.Grupo {
transition: all 0.5s ease-out;
transition-timing-function: linear;
}
.Grupo:hover {
background: #C7212F !important;
}
<div id="area-vulnerables" class="Grupo">
<a href="" title="">
<div class="area-icon">
Contenido
</div>
</a>
</div>
Well, everything works fine, but what I want to do and do not work out is that the transition is from left to right. How can I do it?