-1
問題は、画像の高さがコンテナの境界にとどまらないことです。フレックスボックス使用時に画像がオーバーフローする
画像に適用されている最大幅は機能しているようですが、最大高さは機能しません。
HTML
<div class="row-layout">
<div class="artist-image">
<img >
</div>
<div class="artist-image">
<img >
</div>
<div class="artist-image">
<img >
</div>
</div>
CSS
.row-layout {
display: flex;
flex-direction: row;
width: 100%;
height: 250px;
}
.artist-image {
flex-grow: 1;
flex-shrink: 0;
flex-basis: 0;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.artist-image > img {
max-width: 100%;
max-height: 100%;
}
この問題を解決する方法上の任意のアイデアをいただければ幸いです。
(画像を含む)の完全なコードを投稿してください、私たちは問題を見ることができます。 –
'flex-basis:0'は意味がありません。 0幅を取るようにと言っているだけです。 – agdhruv
私はあなたのコードをcodepenに入れて、うまくいくようです:http://codepen.io/anon/pen/Ramxeo – Johannes