Skew 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>Skew Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #121212; margin: 0; } .skew-button { padding: 20px 40px; font-size: 18px; font-weight: bold; color: #fff; background: #e74c3c; border: none; border-radius: 0; cursor: pointer; outline: none; transition: all 0.3s ease; transform: skew(-20deg); } .skew-button:hover { background: #c0392b; } .skew-button span { position: relative; z-index: 1; display: block; transform: skew(20deg); } </style> </head> <body> <button type="button" class="skew-button"> <span>Skew Effect</span> </button> </body> </html>