Adam(flex: 1 1 0
)が承認した回答は、幅が固定されているか、祖先によって決定されるフレックスボックスコンテナーに対して完全に機能します。子供がコンテナに合うようにしたい状況。
ただし、最大サイズの子に基づいて子のサイズを同じにして、コンテナーを子に合わせたい場合があります。次のいずれかの方法で、フレックスボックスコンテナをその子に適合させることができます。
- 設定
position: absolute
していない設定width
やright
、または
- ラッパーの中に入れます
display: inline-block
このようなフレックスボックスコンテナの場合、受け入れられた回答は機能しません。子のサイズは等しくありません。Chrome、Firefox、Safariで同じように動作するため、これはflexboxの制限であると思います。
解決策は、フレックスボックスの代わりにグリッドを使用することです。
デモ:https : //codepen.io/brettdonald/pen/oRpORG
<p>Normal scenario — flexbox where the children adjust to fit the container — and the children are made equal size by setting {flex: 1 1 0}</p>
<div id="div0">
<div>
Flexbox
</div>
<div>
Width determined by viewport
</div>
<div>
All child elements are equal size with {flex: 1 1 0}
</div>
</div>
<p>Now we want to have the container fit the children, but still have the children all equally sized, based on the largest child. We can see that {flex: 1 1 0} has no effect.</p>
<div class="wrap-inline-block">
<div id="div1">
<div>
Flexbox
</div>
<div>
Inside inline-block
</div>
<div>
We want all children to be the size of this text
</div>
</div>
</div>
<div id="div2">
<div>
Flexbox
</div>
<div>
Absolutely positioned
</div>
<div>
We want all children to be the size of this text
</div>
</div>
<br><br><br><br><br><br>
<p>So let's try a grid instead. Aha! That's what we want!</p>
<div class="wrap-inline-block">
<div id="div3">
<div>
Grid
</div>
<div>
Inside inline-block
</div>
<div>
We want all children to be the size of this text
</div>
</div>
</div>
<div id="div4">
<div>
Grid
</div>
<div>
Absolutely positioned
</div>
<div>
We want all children to be the size of this text
</div>
</div>
body {
margin: 1em;
}
.wrap-inline-block {
display: inline-block;
}
#div0, #div1, #div2, #div3, #div4 {
border: 1px solid #888;
padding: 0.5em;
text-align: center;
white-space: nowrap;
}
#div2, #div4 {
position: absolute;
left: 1em;
}
#div0>*, #div1>*, #div2>*, #div3>*, #div4>* {
margin: 0.5em;
color: white;
background-color: navy;
padding: 0.5em;
}
#div0, #div1, #div2 {
display: flex;
}
#div0>*, #div1>*, #div2>* {
flex: 1 1 0;
}
#div0 {
margin-bottom: 1em;
}
#div2 {
top: 15.5em;
}
#div3, #div4 {
display: grid;
grid-template-columns: repeat(3,1fr);
}
#div4 {
top: 28.5em;
}
flex
プロパティはflex-grow
、flex-shrink
およびflex-basis
プロパティの省略プロパティであることに注意してください。一般的な使用法に対応するため、省略形は指定されていないコンポーネントを正しくリセットするため、個々のプロパティよりも省略形を使用することをお勧めします。初期値は0 1 auto
です。