gpt4 book ai didi

网格上的 CSS DIV 布局

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:11 24 4
gpt4 key购买 nike

enter image description here

是否可以使用 div 获取此布局

最佳答案

您可以在 .e 上使用 float 和负数 margin-top 来做到这一点。使用砌体,您不需要 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%;
}
<div class="content">
<div class="a item">a</div>
<div class="b item">b</div>
<div class="c item">c</div>
<div class="d item">d</div>
<div class="e item">e</div>
</div>

关于网格上的 CSS DIV 布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41890989/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com