设置 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>

我们来看一个例子,在 Bootstrap 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.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>

  <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>

更新于: 18-06-2020

75 次浏览

开始你的 事业

完成课程,获得认证

开始
广告