题目 79
css
.box {
width: 150px;
/* 请在此处编写代码 */
}
.box1 {
width: 150px;
height: 100px;
background-color: #5cd8a2;
}
.box2 {
width: 50px;
height: 100px;
background-color: #ff8077;
}
.box3 {
width: 50px;
height: 100px;
background-color: #ffcb3d;
}
html
<body>
<div class="box">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
</body>
题目:请利用 flex 实现水平居中效果。
答题文件: 79.html