JSFiddle - React, Tailwind, and code Playground

by Dellwolf

HTML

<div>
    <ul class="images">
        <li><img src="http://www.placehold.it/150x100"/></li>
        <li><img src="http://www.placehold.it/150x100"/></li>
        <li><img src="http://www.placehold.it/150x100"/></li>
        <li><img src="http://www.placehold.it/150x100"/></li>
    </ul>
</div>

CSS

div
{
    width: 400px;
    height: 250px;
    background-color:blueviolet;
}

ul
{
    list-style:none;
}

li
{
    background-color:red;
    width: 100px;
    display: inline;
}