Bootstrap 4 按鈕 .btn-outline-danger 類
要在按鈕上設定輪廓以指示危險,你需要在 Bootstrap 中使用 btn-outline-danger 類。
在 <button> 元素中設定輪廓 −
<button type="button" class="btn btn-outline-danger"> Danger Ahead </button>
你可以嘗試執行以下程式碼來實現 btn-outline-danger 類 −
示例
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> </head> <body> <h2>Danger Button</h2> <button type="button" class="btn btn-outline-danger">Danger Ahead</button> </body> </html>
廣告