JSFiddle - React, Tailwind, and code Playground

by Avi Algaly

HTML

<button popovertarget="my-popover">
  pop it
</button>
<div id="my-popover" class="pop" popover>
  Hello my name is Avi algaly
</div>

CSS

.pop {
  width:400px;
  height:400px;
  border:solid 1px red;
  background-color:#7895B2;
  color:white;
  font-size:4em;
}