JSFiddle - React, Tailwind, and code Playground

by brian

HTML

<div class="container">
Lorem Ipsum
</div>

CSS

.container{
    width: 100%;
    height: 400px;
    background: lightblue;
    margin-top: 30px;
}

.container:before {
    content: "";
    position: absolute;
    top: 0px;
    width: 100%;
    height: 30px;
    background-image: url('http://www.placehold.it/30x30');
    background-repeat: repeat-x;
}