Bootstrap 4 Button .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://cdn.staticfile.org/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>