zoom hover html code example
Example 1: on hover zoom card
transform: scale(1.5);
Example 2: html zoom text on hover
<style>
#test-text:hover {
font-size: 40px;
}
</style>
<body>
<p id=test-text>TEST</p>
</body>
transform: scale(1.5);
<style>
#test-text:hover {
font-size: 40px;
}
</style>
<body>
<p id=test-text>TEST</p>
</body>