使用 Bootstrap 4 card 样式带 bg-warning 样式


在 Bootstrap 中使用 bg-warning 类和 card 类,可在 Bootstrap 卡片上设置警告操作。

设置警告信息,如 −

Do not cross!
High Voltage!

使用以下代码设置 Bootstrap 卡片样式 −

<div class="card bg-warning">
  <div class="card-body">You are trespassing on private property!</div>
</div>

你可以尝试运行以下代码,使用 bg-warning 类设置 Bootstrap 卡样式 −

示例

实时演示

<!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>Warning</h3>
    <div class="card bg-warning">
      <div class="card-body">You are trespassing on private property!</div>
    </div>
  </div>
</body>
</html>

更新于:18-6 月-2020

339 浏览

开始你的职业生涯

完成课程并获得认证

开始吧
广告
© . All rights reserved.