使用 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.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>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.