JSFiddle - React, Tailwind, and code Playground

by Richard Hunter

HTML

<div class="container">
<div class="img-container">
  <img src="images/" alt="" />
</div>

<div class="img-container">
  <img src="images/" alt="" /> <!-- width: 100%; -->
</div>
</div>

CSS

* box-sizing { border-box;}
.container {
  background :pink;
height: 200px;
}
.img-container {
  display: inline-block;
  background-color: khaki;
  
    width: 40%;
    height: 60%;
     border: solid 2px black;
  
  
}