Input
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Transform Origin Example</title> <style> .box { width: 100px; height: 100px; background-color: #e74c3c; transition: transform 0.5s ease; transform-origin: top left; /* Rotation happens around the top left corner */ } .box:hover { transform: rotate(45deg); /* Rotates the box around the top left corner */ } </style> </head> <body> <div class="box"></div> </body> </html>