项目放置在容器的末尾

项目放置在容器的末尾

本文介绍了将最后一个 flex 项目放置在容器的末尾的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

此问题涉及具有完整 css3 支持(包括 flexbox)的浏览器.

我有一个 flex 容器,里面有一些项目.它们都适合 flex-start,但我希望 last .end 项目适合 flex-end.有没有不修改 HTML 且不诉诸绝对定位的好方法?

.container {显示:弹性;弹性方向:列;轮廓:1px纯绿色;最小高度:400px;宽度:100px;justify-content: flex-start;}p{高度:50px;背景颜色:蓝色;边距:5px;}

<p></p><p></p><p></p><p class="end"></p>

解决方案

Therefore you could use margin-top: auto to distribute the space between the other elements and the last element.

This will position the last element at the bottom.

p:last-of-type {
  margin-top: auto;
}

.container {
  display: flex;
  flex-direction: column;
  border: 1px solid #000;
  min-height: 200px;
  width: 100px;
}
p {
  height: 30px;
  background-color: blue;
  margin: 5px;
}
p:last-of-type {
  margin-top: auto;
}
<div class="container">
  <p></p>
  <p></p>
  <p></p>
</div>


Likewise, you can also use margin-left: auto or margin-right: auto for the same alignment horizontally.

p:last-of-type {
  margin-left: auto;
}

.container {
  display: flex;
  width: 100%;
  border: 1px solid #000;
}
p {
  height: 50px;
  width: 50px;
  background-color: blue;
  margin: 5px;
}
p:last-of-type {
  margin-left: auto;
}
<div class="container">
  <p></p>
  <p></p>
  <p></p>
  <p></p>
</div>

这篇关于将最后一个 flex 项目放置在容器的末尾的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 02:41