JSFiddle - React, Tailwind, and code Playground

by Todd Levy

HTML

<div class="wrap">
    <div style="background-image: url(http://toddlevy.com/ribbon.jpg);"></div>
</div>

CSS

* {margin:0; padding:0;}

body {
    background:#3b3943;
}
.wrap {
   width: 100%;    
   position:relative;
}
.wrap div {
    text-align:left;
    display: block;
    width: 100%;
    max-width:1400px;
    position: absolute;
    z-index: 1;
    right: 0;
    overflow: hidden;
    height: 50em;
    overflow: hidden;
    background: no-repeat left top;
    -webkit-background-size: 80%;
    -moz-background-size: 80%;
    -o-background-size: 80%;
    background-size: 80%;
}