在flexbox中使div填充剩余*水平*空间

时间:2016-06-10 09:46:11

标签: html css css3 flexbox

我在flexbox中有两个div并排。右手应该总是相同的宽度,我希望左手一个只抓住剩余的空间。但除非我专门设定其宽度,否则它不会。

所以目前,它被设置为96%,看起来没问题,直到你真的挤压屏幕 - 然后右手div有点缺乏所需的空间。

我想我可以保持原样,但感觉不对 - 就像有必要说:

  

正确的一个总是一样的;你在左边 - 你得到了剩下的一切

.ar-course-nav {
  cursor: pointer;
  padding: 8px 12px 8px 12px;
  border-radius: 8px;
}
.ar-course-nav:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
<br/>
<br/>
<div class="ar-course-nav" style="display:flex; justify-content:space-between;">
  <div style="width:96%;">
    <div style="overflow:hidden; white-space:nowrap; text-overflow:ellipsis;">
      <strong title="Course Name Which is Really Quite Long And Does Go On a Bit But Then When You Think it's Stopped it Keeps on Going for even longer!">
                Course Name Which is Really Quite Long And Does Go On a Bit But Then When You Think it's Stopped it Keeps on Going for even longer!
            </strong>
    </div>
    <div style="width:100%; display:flex; justify-content:space-between;">
      <div style="color:#555555; margin-right:8px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;" title="A really really really really really really really really really really really long department name">
        A really really really really really really really really really really really long department name
      </div>
      <div style="color:#555555; text-align:right; white-space:nowrap;">
        Created: 21 September 2016
      </div>
    </div>
  </div>
  <div style="margin-left:8px;">
    <strong>&gt;</strong>
  </div>
</div>

2 个答案:

答案 0 :(得分:189)

使用flex-grow属性使弹性项目占用主轴上的可用空间

此属性将尽可能扩展项目,将长度调整为动态环境,例如屏幕重新调整大小或添加/删除其他项目。

一个常见示例是flex-grow: 1或使用速记属性flex: 1

因此,在您的div上使用width: 96%而不是flex: 1

您写道:

  

所以目前,它被设置为96%,看起来没问题,直到你真的挤压屏幕 - 然后右手div有点缺乏所需的空间。

压缩固定宽度div与另一个flex属性相关:flex-shrink

默认情况下,弹性项目设置为flex-shrink: 1,这样可以缩小它们以防止容器溢出。

要停用此功能,请使用flex-shrink: 0

有关详细信息,请参阅答案中的 flex-shrink因子 部分:

在此处了解有关主轴的柔性对齐的更多信息:

在此处了解有关十字轴的柔性对齐的更多信息:

答案 1 :(得分:15)

基本上,我试图让我的代码在“行”上有一个中间部分,以自动调整到两侧的内容(在我的情况下是虚线分隔符)。就像@Michael_B建议的那样,关键是在行容器上使用display:flex,并至少确保行上的中间容器的flex-grow值至少为1(如果外部容器没有任何容器flex-grow个属性已应用)。

这是我正在尝试做的照片,以及如何解决该问题的示例代码。

编辑:根据浏览器的显示方式,虚线底部边框可能看起来很奇怪。我个人建议使用黑色圆圈SVG作为重复的背景图像,其大小和位置应适当设置在中间容器的底部。有空的时候会添加这个替代解决方案。

enter image description here

.row {
  background: lightgray;
  height: 30px;
  width: 100%;
  display: flex;
  align-items:flex-end;
  margin-top:5px;
}
.left {
  background:lightblue;
}
.separator{
  flex-grow:1;
  border-bottom:dotted 2px black;
}
.right {
  background:coral;
}
<div class="row">
  <div class="left">Left</div>
  <div class="separator"></div>
  <div class="right">Right With Text</div>
</div>
<div class="row">
  <div class="left">Left With More Text</div>
  <div class="separator"></div>
  <div class="right">Right</div>
</div>
<div class="row">
  <div class="left">Left With Text</div>
  <div class="separator"></div>
  <div class="right">Right With More Text</div>
</div>