JSFiddle - React, Tailwind, and code Playground

by dpnminh

HTML

<div class="container">
  <img src="https://cloudinary-res.cloudinary.com/image/upload/v1547735375/VueJS_Amsterdam_2018/vectorstock_845035.jpg" class="img"/>
  <h1 class="text">
     Heading
  </h1>
</div>

CSS

.container {
  display: flex;
  align-items: center;
  justify-content: center; 
  position: relative; 
  width: 500px;
  height: 295px;
  background-color: black;
}

.img {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.6;
}

.text {
  z-index: 2;
  color: white;
  font-size: 50px;
}