跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> .button { background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; } </style> </head> <body> <h2>CSS Кнопки</h2> <button>Кнопка по умолчанию</button> <a href="#" class="button">Кнопка ссылка</a> <button class="button">Кнопка</button> <input type="button" class="button" value="Кнопка ввода"> </body> </html>