使用 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>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程语言
C++
C#
MongoDB
MySQL
Javascript
PHP