JSFiddle - React, Tailwind, and code Playground
by d0m33
HTML
<div>
<img src="https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__480.jpg">
</div>
CSS
body {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
}
div {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}
img {
border-radius: 16px;
max-width: 100%;
max-height: 100%;
}