Answers for "js text zoom when hover"

CSS
0

on hover zoom card

transform: scale(1.5);
Posted by: Guest on July-16-2020
-1

html zoom text on hover

<style>
#test-text:hover {
font-size: 40px;
}


</style>

<body>
<p id=test-text>TEST</p>
</body>
Posted by: Guest on January-08-2021

Browse Popular Code Answers by Language