<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>
s a,b和c。我希望元素a位于容器顶部10px,b位于容器顶部50px,c位于容器底部10px。为了达到这个目的,我该如何设置b的风格?我希望尽可能避免使用绝对位置,因为当我尝试使用它时,不知何故b的宽度发生了变化。我想知道是否有办法在flexbox的子节点之间设置自定义距离。
使用边距调整距离更容易 - 所以你可以删除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>