bootstrapv5卡片组件类名
时间: 2023-08-05 09:09:57 浏览: 144
易语言 更改窗口组件类名
在Bootstrap v5中,卡片组件的类名为 "card"。可以通过以下方式使用:
```html
<div class="card">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
<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="card-link">Card link</a>
<a href="#" class="card-link">Another link</a>
</div>
</div>
```
以上代码会创建一个基本的卡片组件。你也可以根据需要添加其他的类名来定制卡片的样式和行为。
阅读全文