JSFiddle - React, Tailwind, and code Playground

by charlescarver

HTML

<div class="test">
    content
</div>

CSS

body{
    background-color:Red;
}

.test{
    width:200px;
    height:200px;
    background-color:white;
    margin:20px auto;
    border-width: 0px 7px 13px;
    -moz-border-image: url(http://i.stack.imgur.com/ECfKJ.png) 0 7 13 repeat;
    -webkit-border-image: url(http://i.stack.imgur.com/ECfKJ.png) 0 7 13 repeat;
    -o-border-image: url(http://i.stack.imgur.com/ECfKJ.png) 0 7 13 repeat;
    border-image: url(http://i.stack.imgur.com/ECfKJ.png) 0 7 13 repeat;
}