JSFiddle - React, Tailwind, and code Playground

by Behseini

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<div id="wrapper">
    <div id="img-box"></div>
    <div id="tets"></div>
    <div id="tes3"></div>
</div>

CSS

html, body {
    height:100%;
    width:100%;
}
#wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}
#img-box {
    position: absolute;
    background-image: url("http://www.bluearthrenewables.com/wp-content/uploads/2014/12/7_Intake-Construction_CullitonCreek.jpg");
    top:0;
    left:0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}