Answers for "div hover effects show text"

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

add textcontent on hover

.my_el:hover:after {
	content:" →"
}
Posted by: Guest on October-27-2021

Browse Popular Code Answers by Language