Split Color Button - 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>Split Color Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; margin: 0; } .split-color-button { padding: 20px 40px; font-size: 18px; font-weight: bold; color: #fff; background: linear-gradient(45deg, #3498db 50%, #e74c3c 50%); border: none; border-radius: 30px; cursor: pointer; outline: none; transition: all 0.3s ease; } .split-color-button:hover { background: linear-gradient(45deg, #2980b9 50%, #c0392b 50%); } .split-color-button span { position: relative; z-index: 1; } </style> </head> <body> <button type="button" class="split-color-button"> <span>Split Color</span> </button> </body> </html>