text selector zoom hover effect css code example
Example: html zoom text on hover
<style>
#test-text:hover {
font-size: 40px;
}
</style>
<body>
<p id=test-text>TEST</p>
</body>
<style>
#test-text:hover {
font-size: 40px;
}
</style>
<body>
<p id=test-text>TEST</p>
</body>