HTML-CSS: Hover underline animation - w3resource

PHOTO EMBED

Thu Feb 16 2023 11:21:35 GMT+0000 (Coordinated Universal Time)

Saved by @peterteszary #css

<style> 
.w3rcontainer{
   border: 1px solid 
#cccfdb;
   border-radius: 2px;
} 
.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: 
#0087ca;
}

.hover-underline-animation:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: 
#0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
</style>
content_copyCOPY

https://www.w3resource.com/html-css-exercise/html-css-practical-exercises/html-css-practical-exercise-15.php