gpt4 book ai didi

css - 当 Flex 中的 flex 方向为 row-reverse 时,将元素向左对齐

转载 作者:行者123 更新时间:2023-12-03 15:29:47 27 4
gpt4 key购买 nike

我想以相反的顺序水平显示元素,左对齐

这是我的工作 fiddle ,但元素右对齐。

#main {
width: 400px;
height: 400px;
border: 1px solid #c3c3c3;
display: flex;
flex-direction: row-reverse;
align-items: flex-start;
}

#main div {
width: 50px;
height: 50px;
}
<div id="main">
<div style="background-color:coral;">A</div>
<div style="background-color:lightblue;">B</div>
<div style="background-color:khaki;">C</div>
<div style="background-color:pink;">D</div>
<div style="background-color:lightgrey;">E</div>
<div style="background-color:lightgreen;">F</div>
</div>


有人可以帮助我,提前致谢。

最佳答案

您需要指定 justify-content: flex-end;

#main {
width: 400px;
height: 400px;
border: 1px solid #c3c3c3;
display: flex;
flex-direction: row-reverse;
align-items: flex-start;
justify-content: flex-end;
}

#main div {
width: 50px;
height: 50px;
}
<div id="main">
<div style="background-color:coral;">A</div>
<div style="background-color:lightblue;">B</div>
<div style="background-color:khaki;">C</div>
<div style="background-color:pink;">D</div>
<div style="background-color:lightgrey;">E</div>
<div style="background-color:lightgreen;">F</div>
</div>

关于css - 当 Flex 中的 flex 方向为 row-reverse 时,将元素向左对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52643063/

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