<span>안녕</span>
span {
font-weight: bold;
position : relative;
}
span::after {
content : '';
position : absolute;
bottom: 0px;
left: 50%;
height: 2px;
width: 100%;
background-color: red;
transform : translateX(-50%);
}
span:hover::after {
animation-name : ani-1;
animation-duration: .5s;
animation-iteration-count: 1;
animation-timing-function : linear;
}
@keyframes ani-1 {
10% {
width: 0;
}
50% {
width: 100%;
}
70% {
width: 80%;
}
100% {
width: 100%;
}
}