包含挡路内容的Flexbox项目溢出Flexbox容器

Flexbox items with block content overflow the flexbox container(包含挡路内容的Flexbox项目溢出Flexbox容器)
本文介绍了包含挡路内容的Flexbox项目溢出Flexbox容器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问题

类似按钮的挡路内容会导致我的弹性项展开并溢出FlexBox容器。

预期行为

在此示例中,按钮应该与用省略号隐藏的按钮文本溢出并排显示。弹性项宽度应该基于兄弟项而不是内容,并留在容器内,在容器更改宽度和添加或删除弹性项时保持响应。另一个警告是,对于我的特定方案,我不能在flex项或按钮父div上使用overflow:Hidden。

这里是fiddler。

HTML示例

<div class="container" style="width: 400px;">

  <div class="child one">
    Child One
    <br>Lorem ipsum
    <br>dolor sit amet
  </div>

  <div class="child two"><div><button class="text">Child Two with a loooooooooooooooooong naaaaaaaaaaaaaaaaaaaaaaaaaaaaaame</button><button>button two</button></div></div>

<div class="child three">Some Text</div></div>

示例CSS

div {
  border: 3px solid;
}

.container {
  padding: 10px;
  background-color: yellow;
  display: -webkit-flex;
  display: flex;
}

.child {
  flex: 1 1 auto;
  padding: 10px;
  margin: 10px;
  background-color: #eee;
}

.child.one {
  color: green;
}

.child.two {
  flex: 6 1 auto;
  color: purple;
}

.child.two button {
  display: inline-block;
}

.child.three {
  color: blue;
}

.text {
  text-overflow: ellipsis;
  overflow: hidden;
}

edit:现在,我不再尝试显示多个按钮,而是将要求更改为只显示一个按钮。如果有人能够用多个按钮解决这个问题,我仍然会感兴趣。

推荐答案

我已经为你们中感兴趣的人提供了答案。然而,我不得不修改我的初始要求。我没有尝试让两个按钮并排显示,而是将其减少到一个按钮。考虑到这一点,这就是答案。这似乎可以跨浏览器工作。

fiddle example of resolution

添加以下样式:

.child {
    width: 1%;
}

.child.button {
    width: 100%;
}

我很想找人解释一下宽度%是怎么回事?它看起来更像是最小宽度的工作方式。

编辑:感谢Michael_B链接到explanation of width relationship in flex items。

这篇关于包含挡路内容的Flexbox项目溢出Flexbox容器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

how to remove this error quot;Response must contain an array at quot; . quot;.quot; while making dropdown(如何删除此错误quot;响应必须在quot;处包含数组。创建下拉菜单时(Q;))
Why is it necessary to use `document.createElementNS` when adding `svg` tags to an HTML document via JS?(为什么在通过JS为一个HTML文档添加`svg`标签时,需要使用`Document.createElementNS`?)
wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
price depend on selection of radio input(价格取决于无线电输入的选择)
calculate price depend on selection without button(根据没有按钮的选择计算价格)
What should I consider before minifying HTML?(在缩小HTML之前,我应该考虑什么?)