📅  最后修改于: 2023-12-03 15:28:55.418000             🧑  作者: Mango
顺风简单产品卡片是一个基于CSS实现的卡片组件,具有一定的响应式能力。它可以用于展示产品信息、新闻标题、博客文章等等。
在HTML文件中引入simple-card.css
文件:
<link rel="stylesheet" href="simple-card.css">
使用以下HTML结构创建卡片:
<div class="card">
<img src="https://picsum.photos/200/300" 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>
顺风简单产品卡片采用了以下CSS样式:
.card {
margin-bottom: 1rem;
border: none;
box-shadow: 0 0 10px gray;
display: flex;
flex-direction: column;
border-radius: 5px;
}
.card img {
height: 200px;
width: 100%;
display: block;
border-radius: 5px 5px 0 0;
object-fit: cover;
}
.card-body {
flex: 1;
display: flex;
flex-direction: column;
padding: 1rem;
}
.card-title {
font-weight: bold;
margin-bottom: 0.5rem;
}
.card-text,
.btn {
margin-top: auto;
}
使用以上CSS样式和HTML结构,可得到以下示例效果图:
顺风简单产品卡片是一个非常实用、简单的卡片组件,不仅具有良好的可读性和交互性,还具有一定的响应式能力,可以帮助程序员快速构建产品信息展示页面。