运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> button { background-color: #04AA6D; border: none; color: white; padding: 15px 32px; font-size: 16px; cursor: pointer; } button:active { background-color: pink; } </style> </head> <body> <h1>Demo of :active</h1> <p>The :active pseudo-class styles the active button:</p> <button>Click Me</button> </body> </html>