JSFiddle - React, Tailwind, and code Playground

HTML

<div class="header">
    <div class="left"></div>
    <div class="content">text text text text text text text text text text text text text text </div>
    <div class="right"></div>
</div>

CSS

body{padding:15px;}

.header {
    margin:0 auto;
    display:block;
    position: relative;
    height:119px;
    width:200px;
    background:red url(center.jpg) repeat-x;
}
.left {
    position:absolute;
    top:0;
    left:0;
    background: green url(left.jpg) no-repeat;
    height:100%;
    width:20px;
}

.right {
    position:absolute;
    top:0;
    right:0;
    background: green url(right.jpg) no-repeat;
    height:100%;
    width:20px;
}
.content {
    margin: 5px 25px;
}