壁纸库 - 免费高清壁纸下载
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>壁纸库 - 免费高清壁纸下载</title>
<style type="text/css">
body{
background-color: #f2f2f2;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.container{
max-width: 1200px;
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.card{
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
margin: 20px;
flex-basis: calc(33.33% - 40px);
box-sizing: border-box;
overflow: hidden;
}
.card img{
width: 100%;
height: 200px;
object-fit: cover;
}
.card h3{
font-size: 24px;
margin: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">分类</a></li>
<li><a href="#">最新</a></li>
<li><a href="#">热门</a></li>
</ul>
</nav>
</header>
<div class="container">
<div class="card">
<img src="https://picsum.photos/400/300/?image=0" alt="壁纸1">
<h3>壁纸1</h3>
</div>
<div class="card">
<img src="https://picsum.photos/400/300/?image=10" alt="壁纸2">
<h3>壁纸2</h3>
</div>
<div class="card">
<img src="https://picsum.photos/400/300/?image=20" alt="壁纸3">
<h3>壁纸3</h3>
</div>
<div class="card">
<img src="https://picsum.photos/400/300/?image=30" alt="壁纸4">
<h3>壁纸4</h3>
</div>
<div class="card">
<img src="https://picsum.photos/400/300/?image=40" alt="壁纸5">
<h3>壁纸5</h3>
</div>
<div class="card">
<img src="https://picsum.photos/400/300/?image=50" alt="壁纸6">
<h3>壁纸6</h3>
</div>
</div>
<footer>
<p>© 2021 壁纸库</p>
</footer>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/m47D 著作权归作者所有。请勿转载和采集!