3 回答

不再熱情似火
TA貢獻15條經(jīng)驗 獲得超6個贊
推薦你看下flex布局
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.father{
????????height: 300px;
????????width:300px;
????????border:1px solid #333;
????????display:flex;
????????align-items: flex-end;
????????justify-content:space-around;
}
.son{
????????height: 100px;
????????width:70px;
????????border:1px solid #ccc;
}
</style>
</head>
<body>
<div>
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
添加回答
舉報
0/150
提交
取消