Bootstrap 是一个流行的前端框架,用于快速开发响应式和移动优先的网站。卡片(Card)是 Bootstrap 中的一个组件,用于展示内容,如图片、文本、列表组等。列(Column)是 Bootstrap 网格系统的一部分,用于将页面分成多个部分,以便在不同设备上实现响应式布局。
Bootstrap 卡片有多种类型,包括但不限于:
卡片组件广泛应用于各种网页和应用程序中,例如:
以下是一个使用 Bootstrap 列和卡片组件显示卡片列表的示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap Card List</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<div class="row">
<!-- 卡片列 -->
<div class="col-md-4">
<div class="card">
<img src="https://via.placeholder.com/300x200" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<!-- 更多卡片列 -->
<div class="col-md-4">
<div class="card">
<img src="https://via.placeholder.com/300x200" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img src="https://via.placeholder.com/300x200" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>
原因:可能是由于网格系统的列数没有正确设置,或者 Bootstrap 的 CSS 和 JS 文件没有正确引入。
解决方法:
<head>
标签中正确引入了 Bootstrap 的 CSS 文件。<body>
标签结束前引入了 jQuery 和 Bootstrap 的 JS 文件。col-md-4
表示在中等屏幕及以上设备上每行显示 3 列。<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
通过以上步骤,你应该能够成功使用 Bootstrap 的列和卡片组件来显示卡片列表。
领取专属 10元无门槛券
手把手带您无忧上云