JSFiddle - React, Tailwind, and code Playground

by Nikolay Petrov

HTML

<div class="row"> 
  <div class="cell">
    <img src="http://i.imgur.com/OUla6mK.jpg"/>
  </div>
  <div class="cell">
    <img src="http://i.imgur.com/M16WzMd.jpg"/>
  </div>
</div>

CSS

.row {
    display: flex;
    background: #aaa;
}

.cell {
    flex: 1 1 auto;
    background-color: green;
    text-align: center;
    
    margin: 10px;
}
img {
  max-width: 100%;
}