运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .button { background-color: #ddd; border: none; color: black; padding: 10px 20px; text-align: center; text-decoration: none; display: inline-block; margin: 4px 2px; cursor: pointer; border-radius: 16px; } .button:hover { background-color: #f1f1f1; } </style> </head> <body> <h2>Pill Buttons</h2> <button class="button">Pill Button 1</button> <button class="button">Pill Button 2</button> </body> </html>