<!-- <html> <head> <title> CSS Grow & Shrink</title> <style> #textDiv{ width:600px; height:800px; float:left; } #textDiv textarea{ width:600px; height:800px; } .mydiv { height:200px; width:200px; margin:auto; margin-top:50px; background-color:blue; border-radius:200px; } .grow { transition: all .4s cubic-bezier(.23,.73,.73,.21); } .grow:hover { transform: scale(1.5); } </style> </head> <body> <div id="textDiv"> </div> <div class="mydiv grow"></div> </body> </html> -->