.element {
padding: 30px;
background: #eee;
position: relative;
&:after {
position: absolute;
content:"";
width: 0;
height: 2px;
background: red;
bottom: 0;
right: 0;
left: 0;
transition: all .5s;
}
&:hover {
&:after {
width: 100%;
}
}
}