JSFiddle - React, Tailwind, and code Playground

HTML

<html> 
<head>
</head>
<body>

<div class="imageBox">
    <img src="http://screenshots.en.softonic.com/en/scrn/80000/80669/easter-icons-5.jpg"><br>
    Image 1
</div>

<div class="imageBox">
    <img src="http://l-userpic.livejournal.com/82523298/2181918"><br>
    Image 2
</div>

<div class="imageBox">
    <img src="http://www.jellymuffin.com/icons/emo/images/30.jpg"><br>
    Image 3
</div>
    
</body>
</html>

CSS

img {width: 100px; height: 100px;}

.imageBox {display: inline-block; border: 1px solid grey; background: silver; padding: 4px; text-align: center; font-size: 10px;}