JSFiddle - React, Tailwind, and code Playground

by Shubham Ashish

HTML

<div>
    <img src="https://static.pexels.com/photos/28221/pexels-photo-28221.jpg" />
</div>

CSS

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  position: relative;
}

div
{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
}

img
{
    max-height: 100%;
    max-width: 100%;
}