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>

更新於:17-6 月-2020

281 次瀏覽

開啟你的 職業

透過完成課程獲得認證

開始
廣告