2016-12-15 3 views

答えて

1

CSS Flexboxを使用できます。あなたの親のフレックスコンテナ&に画像のalign-self: centerを使用してください。

.img-holder { 
 
    display: inline-flex; 
 
    background: black; 
 
} 
 

 
img { 
 
    align-self: center; 
 
    margin: 10px; 
 
}
<div class="img-holder"> 
 
    <img src="http://placehold.it/50x50" alt="image" /> 
 
    <img src="http://placehold.it/50x60" alt="image" /> 
 
    <img src="http://placehold.it/50x70" alt="image" /> 
 
    <img src="http://placehold.it/50x30" alt="image" /> 
 
    <img src="http://placehold.it/50x20" alt="image" /> 
 
</div>

この情報がお役に立てば幸い!

+0

ありがとうございました。 –

+0

私の喜び@エリック –

関連する問題