JSFiddle - React, Tailwind, and code Playground

HTML

<div id='all-text'>
    <div id='img'><img src="http://www.artmajeur.com/files/internetartgallery/images/artworks/650x650/2698505_Van_Gogh_-_Starry_Night_Over_the_Rhone_-_image.jpg">Starry Night Over The Rhone</div>
    <div id='img'><img src="http://www.artmajeur.com/files/jeffgerke/images/artworks/650x650/6411973_Starry_Night.jpg">The Starry Night</div>
        <div id='img'><img src="http://www.artmajeur.com/files/artesantos/images/artworks/650x650/6449530_decifrando_a_persistencia_da_memairia.jpg">The Persistence of Memory</div>
    <div id='img'><img src="http://www.artchive.com/web_gallery/reproductions//44501-45000/44933/size1.jpg">Cypresses</div>
</div>

CSS

img {
    width: 100%;
}

#img {
    width: 100%;
    display: inline-block;
    font-size: 0.5em;
    padding-bottom: 15px;
}

#all-text {
    -moz-column-count: 3;
    -moz-column-width: 100px;
    -webkit-column-count: 3;
    -webkit-column-width: 100px;
    column-count: 3;
    column-width: 100px;
}