作者:冯婉婷562048 | 来源:互联网 | 2023-02-13 18:28
是否可以使用div来获得此布局
1> Nenad Vracar..:
你可以用浮漂和负做到这一点margin-top
的.e
.使用砖石,您不需要margin-top
DEMO
* {
box-sizing: border-box;
}
.content {
width: 200px;
height: 200px;
border: 1px solid black;
}
.item {
border: 1px solid black;
float: left;
display: flex;
align-items: center;
justify-content: center;
}
.a,
.d {
width: 33.3333333%;
height: 66.67%;
}
.b,
.e {
width: 66.67%;
height: 33.3333333%;
}
.e {
margin-top: -33.3333333%;
}
.c {
width: 33.3333333%;
height: 33.3333333%;
}