Dear Experts,
I need to know how to zoom Div containt with reflect text displaying on page. Can any one help me?
VB.aspx
an example you can see here:
On hover zoom the div
Hi Mehram,
Check the below example.
HTML
<style type="text/css"> #dvZoom:hover { -webkit-transform: scale(1.4); -moz-transform: scale(1.4); -ms-transform: scale(1.4); -o-transform: scale(1.4); transform: scale(1.4); background-color: #FCFAF0; } #dvZoom { width: 400px; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 10px; background-color: #EFF0F1; } </style> <div align="center"> <br /> <div id="dvZoom" align="center"> <a href="#">Displaying different JPEG formats in your browser</a> <br /> <a href="#">Displaying different JPEG formats in Safari</a> <br /> <a href="#">User Comments</a> </div> </div>
Demo
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.