JSFiddle - React, Tailwind, and code Playground

by aybalasubramanian

HTML

<div class="myDiv">
    <div class="bg"></div>
    Hello there how are you?
</div>

CSS

.myDiv {
  z-index: 5;
}
.myDiv .bg {
  z-index: -1;
  position:absolute;
  background: url(//www.wonderbackgrounds.com/girly/backgrounds/girly_background_02.gif) center center;
  background-size:cover;
  opacity: .2;
  width:100%;
  height:100%;
}