Horje
hover border bottom css fixed Code Example
hover border bottom css fixed
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%; }
hover border bottom css fixed
<h1 class="fromCenter">Expand from center</h1><br/>
<h1 class="fromRight">Expand from right</h1><br/>
<h1 class="fromLeft">Expand from left</h1>




Css

Related
css div went over top menu Code Example css div went over top menu Code Example
html5 input required length Code Example html5 input required length Code Example
css animate border bottom on hover Code Example css animate border bottom on hover Code Example
css animate border bottom left to right Code Example css animate border bottom left to right Code Example
stretch text to div width css Code Example stretch text to div width css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13