Answers for "border left to right animation css"

CSS
1

css animate border

.borderAnimation{ 
 transition: border-width 0.2s linear;
}

.borderAnimation:hover{
 border: 2px solid black; 
}
Posted by: Guest on November-12-2021
1

css animate border bottom left to right

h1 { color: #666;display:inline-block; margin:0;text-transform:uppercase; }
h1:after {
  display:block;
  content: '';
  border-bottom: solid 3px #019fb6;  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
h1:hover:after { transform: scaleX(1); }
h1.fromRight:after{ transform-origin:100% 50%; }
h1.fromLeft:after{  transform-origin:  0% 50%; }
Posted by: Guest on June-25-2021

Code answers related to "border left to right animation css"

Browse Popular Code Answers by Language