enlarge icon on hover code example
Example 1: increase div size on hover css
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>