JSFiddle - React, Tailwind, and code Playground

by DiceMasters

HTML

<div class="wrap">
	<img src="https://www.1zoom.ru/big2/51/219186-frederika.jpg" alt="">
</div>

CSS

body {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wrap {
	width: 200px;
	height: 90px;
	position: relative;
	border: 1px solid black;
}

img {
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	maw
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.2;
}