https://vid.me/yuPL merhaba arkadaşlar bu videodaki gibi bir sonuç almak için nasıl bir kod yazmalıyım birazını yazdım js de yazdım ama hiçbir işe yaramadı nedense <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> * { margin:0; padding:0; } div { position: relative; width: 100px; height: 100px; background-color: blue; right: 20px; top: 20px; float: right; } span { padding-top: 25px; display: block; color: white; text-align: center; } </style> </head> <body> <div id="container" onmouseover="foatLeft()"> <span>Computer <br> Engineering</span> </div> <script> function floatLeft() { document.getElementById("container").style.float = "left"; } </script> </body> </html>