使用 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>
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式語言
C++
C#
MongoDB
MySQL
Javascript
PHP