JSFiddle - React, Tailwind, and code Playground
HTML
<div id="wrapper">
<div id="content">
This is the content
</div>
</div>
CSS
html {
height: 100%;
background: url(http://www.shenmansell.com/wp-content/uploads/2008/09/fist.png) #fff no-repeat right bottom;
min-width: 600px;
}
body {
padding: 30px;
height: 100%;
}
#wrapper {
min-width: 300px;
background-color: #eee;
margin: 0 auto;
}
#content {
width: 200px;
margin: 0 50px;
}