JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <ul>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
    </ul>
</div>

CSS

div {
    overflow: hidden;
}

ul {
    text-align: center;
     margin-right: -30px;
}
li {
    display: inline-block;
    width: 100px;
    height: 100px;
    background: blue; 
    margin: 0 30px;
}

li:first-child {
    margin-left: 0;
}