JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <img width="1000" height="80">
    <img width="10" height="80">
    <img width="10" height="80">
</div>


<div>
    <div><img width="100" height="80"></div>
    <div><img width="200" height="80"></div>
    <div><img width="300" height="80"></div>
</div>

CSS

div{
 text-align:center;   
}
img{
 background:red;
 display:inline-block;   
}