<!-- <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 .2s ease-in-out; /*transition: width 2s, height 2s;*/ /*büyüme şekli*/ } .grow:hover { transform: scale(1.1); /*height: 250px;*/ /*width: 250px;*/ } </style> </head> <body> <div id="textDiv"> </div> <div id="mydiv" class="grow"></div> </body> </html> -->