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