<div class="container">
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
</div>
.container{
display: flex;
flex-direction: column;
justify-content: space-between;
height: 140;
}
.a{
margin-top: 10px;
height: 17px;
}
.b{
//??
height: 40px;
}
.c{
margin-bottom: 10px;
height: 18px;
}
我在容器<div>
中有三个<div>
a,b和c。我希望元素a定位到容器顶部10px,b定位到容器顶部50px,c定位到容器底部10px。
我应该如何设置b的样式以实现此目的?我想尽可能避免使用绝对位置,因为当我尝试使用绝对位置时,b的宽度会改变。我想知道是否可以在flexbox的子代之间设置自定义距离。
答案 0 :(得分:2)
在此处使用边距调整距离更容易-因此可以删除justify-content: space-between
。
将margin-top: 23px
添加到b
,并将margin-top: auto
添加到c
。检查以下演示(您可以检查红线以确认距离正确):
* {
box-sizing: border-box;
}
.container {
display: flex;
flex-direction: column;
/*justify-content: space-between;*/
height: 140px;
border: 1px solid;
position: relative;
}
.a {
margin-top: 10px;
height: 17px;
}
.b {
height: 40px;
margin-top: 23px; /* ADDED */
}
.c {
margin-bottom: 10px;
height: 18px;
margin-top: auto; /* ADDED */
}
/* STYLING */
.a,.b,.c {
border: 1px solid blue;
background: cadetblue;
}
.a:before,.b:before,.c:before {
content: '';
top: 0;
width: 2px;
position: absolute;
left: 100px;
background: red;
}
.a:before {
height: 10px;
}
.b:before {
height: 50px;
left: 200px;
}
.c:before {
left: 100px;
top: unset;
bottom: 0;
height: 10px;
}
<div class="container">
<div class="a"></div>
<div class="b"></div>
<div class="c"></div>
</div>