横排四个响应式卡片,并注释每行代码作用
时间: 2024-03-20 07:44:07 浏览: 96
感应卡代码
好的,下面是横排四个响应式卡片的代码,并带有注释说明:
```html
<div class="card-deck"> <!-- 使用 Bootstrap 提供的 card-deck 类,使卡片横向排列 -->
<div class="card">
<img class="card-img-top" src="image1.jpg" alt="Card image cap"> <!-- 卡片顶部图片 -->
<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 class="card">
<img class="card-img-top" src="image2.jpg" alt="Card image cap">
<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 class="card">
<img class="card-img-top" src="image3.jpg" alt="Card image cap">
<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 class="card">
<img class="card-img-top" src="image4.jpg" alt="Card image cap">
<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>
```
这里使用了 Bootstrap 中提供的 `card` 和 `card-deck` 类,实现了横排四个响应式卡片。其中,`card` 类用来定义卡片的基本样式,包括边框、圆角等;`card-deck` 类用来将多个卡片横向排列,并保证它们在不同屏幕宽度下的自适应布局。每个卡片内部包含了图片、标题、内容和按钮等元素,用来展示不同的内容。
阅读全文