JSFiddle - React, Tailwind, and code Playground

by mehulkar

HTML

<div class="wrapper">
  <img src="https://placekitten.com/160/90" alt="">
</div>

CSS

.wrapper {
  background-color: #ccc;
  padding-bottom: 56.25%;
  position: relative;
}

img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%:
}