JSFiddle - React, Tailwind, and code Playground

by Derek Wood

HTML

<div class="slider">
    <div><img src="http://www.placebacon.net/400/300"/></div>
    <div><img src="http://www.placebacon.net/400/800"/></div>
    <div><img src="http://www.placebacon.net/400/300"/></div>
    <div><img src="http://www.placebacon.net/400/300"/></div>
</div>

CSS

.slider {
    display: flex;
    border: 1px solid red;
}
.slider > div {
    min-width: 0; /*don't forget this line, see the explanation below*/
    border: 1px solid blue;
}
.slider > div > img {
    display: block;
    max-width: 100%; /*or width: 100%; if so the above line won't be required */
    height: auto;
}