پیشنمایش زنده
کد HTML
<a class="menu__link" href="#">Hover me!</a>
کد CSS
/* <reset-style> ============================ */
a {
text-decoration: none;
}
/* <main-style> ============================ */
.menu__link {
color: #fff;
line-height: 2;
position: relative;
}
.menu__link::before {
content: '';
width: 100%;
height: 2px;
border-radius: 2px;
background-color: #fff;
position: absolute;
bottom: -.5rem;
left: 0;
transition: transform .4s, opacity .4s;
opacity: 0;
}
.menu__link:hover::before {
transform: translateY(-.25rem);
opacity: 1;
}