用html+css设计一个列表清单小卡片
以下是一个简单的HTML和CSS代码示例,用于创建一个带有图片、标题和描述的列表清单小卡片:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>列表小卡片</title>
<style>
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 300px;
border-radius: 5px;
margin: 10px;
display: inline-block;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.container {
padding: 2px 16px;
}
img {
width: 100%;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.title {
color: #333;
padding: 10px;
font-size: 18px;
}
.description {
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<div class="card">
<img src="image_path.jpg" alt="Nature" style="width:100%">
<div class="container">
<h4><b>列表标题</b></h4>
<p class="description">列表描述文本,这里是该卡片的具体描述信息。</p>
</div>
</div>
</body>
</html>
这段代码创建了一个带有阴影效果和鼠标悬停动画的卡片,卡片内包含一张图片和标题,点击后展开显示详细描述。你可以根据需要替换图片路径和文本信息。
评论已关闭