Input
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Transition with Delay</title> <style> .delayed-box { width: 200px; height: 200px; background-color: #2ecc71; transition: all 0.5s ease 2s; /* 2s delay before transition starts */ } .delayed-box:hover { background-color: #f39c12; width: 250px; } </style> </head> <body> <div class="delayed-box"></div> </body> </html>