Bootstrap 是一个流行的前端框架,用于快速开发响应式和移动优先的网站。Bootstrap 4 是该框架的第四个主要版本,提供了丰富的组件和工具,以帮助开发者构建现代化的网页。
Bootstrap 4 中的卡片(Cards)是一种常用的组件,用于展示内容块。卡片可以包含标题、文本、图像、列表组、页眉和页脚等。
卡片常用于以下场景:
在 Bootstrap 4 中,删除卡片中的空格通常涉及到 CSS 样式的调整。以下是一些常见的原因和解决方法:
替换空格:
如果需要在 HTML 中保留空格,可以使用
来代替普通空格。<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap 4 Cards</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
.card {
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-md-4">
<div class="card">
<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>
</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>
领取专属 10元无门槛券
手把手带您无忧上云