html - 内联 block 元素换行时的CSS,父包装器不适合新宽度

标签 html css

如果内容因屏幕宽度而换行,如何让 inline-block 元素适应其内容宽度?

<!-- parent inline-block -->
<div style='display: inline-block;'>
    <div style='display: inline-block; width:200px;'></div>
    <!--
        If this child line breaks, 
        two 200px wide blocks are stacked vertically.
        That should make the parent width 200px,
        but the parent stays much wider than that
    -->
    <div style='display: inline-block; width:200px;'></div>
</div>

我想不出如何表达这个问题,所以听起来很简单,但我整理了一个简单的 JSFiddle 说明。

#wide {
  position: relative;
  width: 100%;
  border: 1px solid black;
  padding: 5px;
}
#narrow {
  position: relative;
  width: 175px;
  border: 1px solid black;
  padding: 5px;
}
.wrap {
  display: inline-block;
  border: 1px solid green;
  margin: auto;
}
.inlineblock {
  display: inline-block;
  vertical-align: top;
  background: red;
  min-width: 100px;
  min-height: 100px;
  border: 1px solid black;
}
<section id='wide'>
  <div class='wrap'>
    <div class='inlineblock'></div>
    <div class='inlineblock'></div>
  </div>
</section>
<p>
  When the red inline-blocks are forced to line break, how do you make a parent with display:inline-block (the green border) snap to fit? How do you get rid of all the extra horiztonal space in the lower green bordered div?
</p>
<section id='narrow'>
  <div class='wrap'>
    <div class='inlineblock'></div>
    <div class='inlineblock'></div>
  </div>
</section>

最佳答案

你不能。默认情况下,inline-block元素有一个 shrink-to-fit width :

The shrink-to-fit width is:
min(max(preferred minimum width, available width), preferred width).

然后,

  • 何时preferred minimum width <= preferred width <= available width , 宽度将为 preferred width ,如您所愿。
  • 何时available width <= preferred minimum width <= preferred width , 宽度将为 preferred minimum width ,如您所愿。
  • 何时preferred minimum width <= available width <= preferred width , 宽度将为 available width ,即使您不喜欢它。

如果你真的不想要这个,我想你可以添加一个 resize使用 JS 事件监听器,并手动设置所需的宽度。

关于html - 内联 block 元素换行时的CSS,父包装器不适合新宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56720229/

相关文章:

javascript - 使用 jQuery 动态生成数据列表的文本字段

javascript - 将引导选择单元动态插入表行不起作用

php - 将行数调整为 Form::Textarea Laravel 5

css - 滚动条可见时页面布局中断 - 是否有 CSS 修复?

html - 使用 Safari/Chrome/FF 处理文本上的填充

javascript - 无法在 Internet Explorer 上使用 javascript 访问选项值

getElementsByClassName 的 JavaScript 'undefined' 错误

jquery 错误在到达点后拍摄到顶部并复制图像

html - 点击显示跨度

html - <a> 标签在包含文本时位置不同