JSFiddle - React, Tailwind, and code Playground
by gionaf
HTML
<div class="element">
<p>Some content comes here...</p>
</div>
CSS
.element {
padding:5px 0;
background:#CCC;
}
.element:before {
content:"\a0";
display:block;
padding:2px 0;
line-height:1px;
border-top:1px dashed #000;
}
.element p {
padding:0 10px;
}