JSFiddle - React, Tailwind, and code Playground
by Diana Lemen
HTML
<div class="image-container">
<img src="https://image.freepik.com/free-vector/modern-abstract-background_1048-1003.jpg" width="100px">
</div>
CSS
.image-container{
width:100%;
background:green;
display:flex;
justify-content: center;
align-items:center;
}
.image-container img{
height: 20px;
}