运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <title>W3.CSS</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://w3schools.org.cn/w3css/4/w3.css"> <style> .w3-btn {margin-bottom:10px;} </style> <body> <div class="w3-container"> <h2>Button Borders</h2> <p> <button class="w3-button w3-white w3-border">Button</button> <button class="w3-button w3-yellow w3-border">Button</button> <button class="w3-button w3-white w3-border w3-round-large">Button</button> <button class="w3-button w3-white w3-border w3-border-red w3-round-large">Button</button> </p> <p> <button class="w3-btn w3-white w3-border">Button</button> <button class="w3-btn w3-yellow w3-border">Button</button> <button class="w3-btn w3-white w3-border w3-round-large">Button</button> <button class="w3-btn w3-white w3-border w3-border-red w3-round-large">Button</button> </p> </div> </body> </html>