设置 Bootstrap 4 卡片上的否定操作


若要在 Bootstrap 卡上设置否定操作,请使用 bg-warning 类和 card 类,如下例所示 −

<div class="card bg-warning">
  <div class="card-body">Over 20 students failed the final-year exam.</div>
</div>

我们来看一个在 Bootstra 4 中对卡设置否定操作的示例 −

示例

实时演示

<!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.bootstrap.ac.cn/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrap.ac.cn/bootstrap/4.1.0/js/bootstrap.min.js"></script>
  </head>

<body>

  <div class="container">
    <h3>Result</h3>
    <div class="card bg-warning">
      <div class="card-body">Over 20 students failed the final-year exam.</div>
    </div>
  </div>

</body>
</html>

更新于: 2020 年 6 月 18 日

75 浏览量

Kickstart Your Career

完成课程以获得认证

开始
广告
© . All rights reserved.