使用 bg-dark 类来设置 Bootstrap 4 卡片样式
在 Bootstrap 4 中使用 bg-dark 上下文类,为卡片添加灰色背景 −
在以下代码段中,我使用了 bg-dark 类来设置 Bootstrap 卡片样式。另外我也使用了 text-while 类,将文本设为白色 −
<div class="card bg-dark text-white"> <div class="card-body">This is it!</div> </div>
让我们来看完整示例,了解如何使用 bg-dark 类 −
示例
<!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"> <h2>Notification</h2> <div class="card bg-dark text-white"> <div class="card-body">This is it!</div> </div><br> <div class="card"> <div class="card-body">How you doing?</div> </div><br> </div> </body> </html>
广告