效果展示
代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: #e7e5e5;
}
li{
list-style: none;
}
a{
text-decoration: none;
color: #3e3c3c;
}
.card{
margin: 50px auto;
width: 600px;
height: 400px;
background: #ffffff;
padding: 30px;
display: flex;
}
.column{
height: 100px;
width: 100%;
}
.list{
display: flex;
justify-content: space-between;
}
.list dl{
padding-right: 20px;
}
.list dl dt{
height: 40px;
font-size: large;
}
.list dl dd{
font-style: italic;
color: #918e8e;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="card">
<div class="column">
<div class="list">
<dl>
<dt>关于我们的网站</dt>
<dd>关于</dd>
<dd>管理团队</dd>
<dd>客户服务</dd>
</dl>
<dl>
<dt>新手指南</dt>
<dd>如何注册</dd>
<dd>如何选课</dd>
<dd>如何拿到毕业证</dd>
</dl>
<dl>
<dt>合作伙伴</dt>
<dd>合作机构</dd>
<dd>合作导师</dd>
</dl>
</div>
</div>
</div>
</body>
</html>