HTML+CSS 制作联系人页面(可自适应)
时间: 2023-07-29 10:11:22 浏览: 213
好的,下面是一个简单的联系人页面的 HTML+CSS 实现。
HTML 代码:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>联系人页面</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>联系人列表</h1>
</header>
<main>
<ul class="contact-list">
<li class="contact">
<img src="https://placehold.it/80x80" alt="头像">
<div class="contact-info">
<h2>张三</h2>
<p>电话:123456789</p>
<p>邮箱:zhangsan@example.com</p>
</div>
</li>
<li class="contact">
<img src="https://placehold.it/80x80" alt="头像">
<div class="contact-info">
<h2>李四</h2>
<p>电话:987654321</p>
<p>邮箱:lisi@example.com</p>
</div>
</li>
<!-- 这里可以添加更多联系人信息 -->
</ul>
</main>
<footer>
<p>版权信息 ©2021</p>
</footer>
</body>
</html>
```
CSS 代码:
```
/* 全局样式 */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
background-color: #f2f2f2;
color: #333;
}
header, footer {
background-color: #333;
color: #fff;
padding: 20px;
}
header h1, footer p {
margin: 0;
}
main {
padding: 20px;
}
/* 联系人列表样式 */
.contact-list {
list-style: none;
margin: 0;
padding: 0;
}
.contact {
display: flex;
align-items: center;
border-bottom: 1px solid #ccc;
padding: 20px 0;
}
.contact img {
width: 80px;
height: 80px;
margin-right: 20px;
border-radius: 50%;
}
.contact h2 {
font-size: 24px;
margin: 0 0 10px;
}
.contact p {
margin: 0;
}
/* 响应式样式 */
@media (max-width: 768px) {
.contact {
flex-direction: column;
text-align: center;
}
.contact img {
margin: 0 auto 20px;
}
}
```
这段代码实现了一个简单的联系人列表页面,包括一个头部导航、一个联系人列表、一个页脚版权信息。其中,联系人列表采用了 flex 布局,使得联系人头像和信息能够左右排列,并且在小屏幕上自动变成上下排列。同时,使用了媒体查询,使得在窗口宽度小于 768px 时,联系人信息能够居中对齐。
阅读全文