Answers for "text decoration css transition"

CSS
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