JSFiddle - React, Tailwind, and code Playground

HTML

<div class= "borderDiv">
  <div class="imgBck">
  </div>
</div>

CSS

.imgBck{
  margin:10px;
  width:300px;
  height:200px;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png');
  background-size:cover;
  border-style:dotted;
}
.borderDiv{
  border-style:solid
}