Answers for "hover down the text css"

CSS
1

how to change text on hover css

/*HTML*/
<button><span>3 replies</span></button>

/*CSS*/
button {width:6em}
button:hover span {display:none}
button:hover:before {content:"Reply!"}
Posted by: Guest on June-09-2021
0

css hover animation text

a {
  /* Same as before */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
}
Posted by: Guest on April-11-2021

Browse Popular Code Answers by Language