跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> .btn-group .button { background-color: #4CAF50; /* Зеленый */ border: 1px solid green; color: white; padding: 15px 32px; text-align: center; text-decoration: none; font-size: 16px; cursor: pointer; width: 150px; display: block; } .btn-group .button:not(:last-child) { border-bottom: none; /* Предотвратить двойные границы */ } .btn-group .button:hover { background-color: #3e8e41; } </style> </head> <body> <h2>Вертикальная группа кнопок</h2> <div class="btn-group"> <button class="button">Кнопка</button> <button class="button">Кнопка</button> <button class="button">Кнопка</button> <button class="button">Кнопка</button> </div> </body> </html>