Quantcast
Channel: Active questions tagged flexbox - Stack Overflow
Viewing all articles
Browse latest Browse all 1675

Horizontal and vertical centering of content (I don't understand one thing)

$
0
0

I am on my first steps on using Flexbox.

How can I move the image title below the image?

<div class="flexbox-container"><div class="flexbox-child"><img src="http://placehold.it/300x400"><br><h4>This title should go below the image</h4></div><div class="flexbox-child"><img src="http://placehold.it/200x400"><h4>This title should go below the image</h4></div><div class="flexbox-child"><img src="http://placehold.it/300x300"><h4>This title should go below the image</h4></div></div><div class="flexbox-container"><div class="flexbox-child"><img src="http://placehold.it/200x350"></div><div class="flexbox-child"><img src="http://placehold.it/400x200"></div></div>

CSS

.flexbox-container {    height: 50%;    padding: 15px;    display: flex;    align-items: center;    align-content: center;    justify-content: space-around;    .flexbox-child {        height: 100%;        padding: 0 15px;        display: flex;        align-items: center;        img {            max-height: 100%;            margin: 0 auto;        }    }}

Viewing all articles
Browse latest Browse all 1675

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>