JSFiddle - React, Tailwind, and code Playground

by Luis Manuel

HTML

<div>
    <img src="http://i.imgur.com/cjgKmvp.jpg"/>
    <img src="http://i.imgur.com/cjgKmvp.jpg"/>
    <img src="http://i.imgur.com/cjgKmvp.jpg"/>
</div>

CSS

body{
    overflow: hidden;
}

div{
    width: 600px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

img{
    float: left;
    width: 200px;
}