JSFiddle - React, Tailwind, and code Playground

by qunzorez

HTML

<div>
  <div class="bordered-box">
    123
  </div>
</div>

CSS

.bordered-box {
  width: 240px;
  height: 510px;
  background-color: lightblue;
  border: 34px solid transparent;
  border-image: url(https://i.ibb.co/TqBJP5d/border-1.png) stretch 38;
  border-image-outset: 18px 19px 10px 12px;
  margin: 40px;
}