Zoom Columns - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Zoom Columns</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f7f8fa; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { display: flex; justify-content: space-around; align-items: center; width: 80%; } .column { flex: 1; padding: 20px; margin: 10px; text-align: center; background: #fff; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; } .column:hover { transform: scale(1.05); box-shadow: 0 8px 16px rgba(0,0,0,0.2); } .column h2 { font-size: 24px; margin-bottom: 20px; } .column p { font-size: 16px; color: #555; } </style> </head> <body> <div class="container"> <div class="column"> <h2>Zoom 1</h2> <p>Interactive zoom effect</p> </div> <div class="column"> <h2>Zoom 2</h2> <p>Attractive hover animation</p> </div> <div class="column"> <h2>Zoom 3</h2> <p>Modern and dynamic</p> </div> </div> </body> </html>