Horje
add expanding underline on page load css Code Example
add expanding underline on page load css
#sec {
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}
#sec:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}
#sec:hover:after {
  width: 100%;
  background: blue;
}




Css

Related
how to remove white space in the right side of web page Code Example how to remove white space in the right side of web page Code Example
on hover css Code Example on hover css Code Example
css change text color Code Example css change text color Code Example
asterisk symbol with red color in html span Code Example asterisk symbol with red color in html span Code Example
remove clicked button border Code Example remove clicked button border Code Example

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