跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> .button { background-color: #4CAF50; /* Green */ border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; } .disabled { opacity: 0.6; cursor: not-allowed; } </style> </head> <body> <h2>Отключенные кнопки</h2> <p>Используйте свойство opacity, чтобы добавить прозрачности кнопке (чтобы она выглядела отключенной):</p> <button class="button">Обычная кнопка</button> <button class="button disabled">Отключенная кнопка</button> </body> </html>