在 Bootstrap 中创建一个红色按钮,表示危险


要在 Bootstrap 中创建一个表示危险的按钮,请使用 .btn-danger 类。

你可以尝试运行以下代码来实现。btn-danger 类 −

範例

现场演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link rel = "stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/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.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <p>Cick the below button in case of issues:</p>
      <div class = "container">
         <button type = "button" class="btn btn-danger">Danger</button>
      </div>
   </body>
</html>

更新于: 12-6月-2020

514 次浏览

开启你的 职业生涯

通过完成该课程获得认证

开始
广告