JSFiddle - React, Tailwind, and code Playground

by neonDog

HTML

<div class="parent">
</div>

CSS

.parent{
  border: 1px solid black;
  width: 100%;
  min-height: 200px;
  position: relative;
}

.parent::after {
  content: "Add an element";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /*border: 1px solid red;*/
  display:flex;
  flex-direction:row;
  align-items: center;
  justify-content: center;
}