Modern Minimal - 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>Modern Minimal</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #fff; font-family: 'Helvetica', sans-serif; } .modern-minimal-box { width: 300px; height: 200px; overflow-y: auto; padding: 20px; background: #f9f9f9; border: 1px solid #ddd; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .modern-minimal-box p { margin: 0; line-height: 1.6; } .modern-minimal-box::-webkit-scrollbar { width: 10px; } .modern-minimal-box::-webkit-scrollbar-track { background: #eee; border-radius: 5px; } .modern-minimal-box::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; } .modern-minimal-box::-webkit-scrollbar-thumb:hover { background: #555; } </style> </head> <body> <div class="modern-minimal-box"> <p>Sample text for the Modern Minimal design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Modern Minimal design. Add more text to make the scrollbar visible and usable.</p> <p>Sample text for the Modern Minimal design. Add more text to make the scrollbar visible and usable.</p> </div> </body> </html>