dev-resources.site
for different kinds of informations.
Animated text underline in CSS only
Published at
7/8/2024
Categories
css
web
Author
Nureon
.animated-underline {
position: relative;
text-decoration: none;
}
.animated-underline::after {
content: "";
position: absolute;
left: 50%;
top: 100%;
width: 100%;
height: 0.125em;
background-color: hsl(200deg, 100%, 50%);
transition: transform 320ms ease;
transform: translate(-50%, 0%) scaleX(0);
transform-origin: right;
}
.animated-underline:hover::after {
transform-origin: left;
transform: translate(-50%, 0%) scaleX(1);
}
Articles
2 articles in total
Animated text underline in CSS only
currently reading
Install google fonts using terminal.
read article
Featured ones: