W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <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; } .button1 { background-color: white; color: black; border: 2px solid #4CAF50; } .button2 { background-color: white; color: black; border: 2px solid #008CBA; } .button3 { background-color: white; color: black; border: 2px solid #f44336; } .button4 { background-color: white; color: black; border: 2px solid #e7e7e7; } .button5 { background-color: white; color: black; border: 2px solid #555555; } </style> </head> <body> <h1>有颜色的按钮边框</h1> <p>请使用 border 属性为按钮添加边框:</p> <button class="button button1">绿色</button> <button class="button button2">蓝色</button> <button class="button button3">黑色</button> <button class="button button4">灰色</button> <button class="button button5">黑色</button> </body> </html>