Input
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Translate Example</title> <style> .box { width: 100px; height: 100px; background-color: #3498db; transition: transform 0.3s ease; } .box:hover { transform: translate(150px, 100px); /* Moves the box 150px right and 100px down */ } </style> </head> <body> <div class="box"></div> </body> </html>