往事随风_遇见最好的你
2019-12-10 17:19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>01-04水平居中布局第四种</title>
<style>
.main{
width:500px;
height:100px;
background: #666;
display: flex;
justify-content: center;
}
.child {
width:100px;
height:100px;
background: red;
}
</style>
</head>
<body>
<div class="main">
<div class="child">
11111
1111111111
11111111111
11111111
</div>
</div>
</body>
</html>
挺好的
一课全面掌握主流CSS布局
5276 学习 · 60 问题
相似问题