要新增有顏色的邊框,請使用CSS的border屬性。
您可以嘗試執行以下程式碼以新增有顏色的邊框。
<!DOCTYPE html> <html> <head> <style> .button { background-color: yellow; color: black; text-align: center; font-size: 15px; padding: 20px; border-radius: 15px; border: 3px dashed blue; } </style> </head> <body> <h2>Result</h2> <p>Click below for result:</p> <button class = "button">Result</button> </body> </html>#
以上是如何使用 CSS 為按鈕新增彩色邊框?的詳細內容。更多資訊請關注PHP中文網其他相關文章!