JSFiddle - React, Tailwind, and code Playground

by GCyrillus

HTML

<div>
		<img src="http://i.stack.imgur.com/GHwKT.jpg" />
	</div>

CSS

img {
	display:block;
	margin:auto;
}
div {
	display:table;
	width:100%;
	background:#7E858F;
}
div:before, div:after {
	content:' ';
	display:table-cell;
	width:50%;
	background-repeat:repeat-x;
}
div:before {
	background-image:url(http://i.stack.imgur.com/V4oPW.jpg);/* slice of 1px */
}
div:after {
	background-image:url(http://i.stack.imgur.com/eSHJv.jpg);/* slice of 1px */
}