Answers for "hover effects on text in css"

CSS
1

css hover animation text

a {
  /* Same as before */
  background: linear-gradient(to right, midnightblue, midnightblue 50%, royalblue 50%);
}
Posted by: Guest on April-11-2021
0

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

Browse Popular Code Answers by Language