Answers for "underline transform css"

CSS
7

text underline hover css

a:hover {
  text-decoration: underline;
}
Posted by: Guest on May-28-2020
0

text decoration css transition

.un {
  display: inline-block;
}

.un::after {
  content: '';
  width: 0px;
  height: 1px;
  display: block;
  background: black;
  transition: 300ms;
}

.un:hover::after {
  width: 100%;
}
Posted by: Guest on December-22-2020

Browse Popular Code Answers by Language