フレックスボックスを使用するとき、左下隅に要素を配置するのが難しいです。 本来、私は 'hello'テキストの直下(つまり、flexboxの左下)に 'world'テキストを表示させようとしています。フレックスボックスで左下にdivを配置
rel {
position: relative;
background: rgba(255, 0, 0, 0.5);
padding: 5px;
margin-top: auto;
}
abs {
position: absolute;
background: rgba(0, 255, 0, 0.5);
padding: 5px;
}
column {
display: flex;
flex-direction: column;
}
item {
display: flex;
align-items: center;
flex: auto;
border: 1px solid blue;
}
<column>
<item>
hello
<br>hello
<br>hello
<br>hello
<br>
<rel>
<abs>
world
<br/>world
<br/>world
<br/>world
<br/>
</abs>
</rel>
</item>
</column>
? – pol
これは役立つかもしれません:http://stackoverflow.com/a/33856609/3597276 –