Search
 
SCRIPT & CODE EXAMPLE
 

CSS

underline css animation hover

.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;
}
Comment

PREVIOUS NEXT
Code Example
Css :: flexbox gap 
Css :: padding right 
Css :: get second child div css 
Css :: convert string to uppercase while typing 
Css :: animation reverse 
Css :: comments in css 
Css :: using float item got out of parent flow how to fix 
Css :: html disable spin buttons on input type number 
Css :: change style of ordered list numbers css 
Css :: margin for text in html 
Css :: background-color: transparent; 
Css :: css make text not break line when overflow 
Css :: change bot description background top.gg 
Css :: css position element in the middle of a header 
Css :: css firefox remove scrollbar 
Css :: css set property with data attribute 
Css :: css scaling border radius 
Css :: @keyframes 
Css :: video camera icon font awesome 
Css :: window popup hide address bar 
Css :: avoid side scrolling css 
Css :: css prevent grid blowout 
Css :: ignore br css 
Css :: datatables width 100% not working 
Css :: how to justify text in css 
Css :: li not first child 
Css :: scss variable to css variable 
Css :: glassmorphism in css 
Css :: how to make image fit container css 
Css :: comment css 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =