JSFiddle - React, Tailwind, and code Playground

by sandro_paganotti

HTML

<div class="frame">
    <div class="border"></div>
</div>

CSS

.frame{
    width: 206px;
    height: 306px;
    overflow: hidden;
}

.border{
    border-right: 400px solid black; 
    border-bottom: 400px solid black;
    border-image: url('http://gpanel.darrell.nl/images/derma.png') 3 388 388 3 fill stretch stretch;
    height: 300px;
    width: 200px;
}