JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
<title>Reorder demo</title>
</head>
<body>
<div id="global_wrapper">
Div 1
<div id="little_wrapper">
<div id="little_container">
Div 2
</div>
</div>
</div>
</body>
</html>
CSS
html, body {margin: 0px; padding: 0px; height: 100%;}
#global_wrapper,
#little_container {border: 2px solid black;}
#global_wrapper {background: #00FFFF; height: 1000px;}
#little_wrapper {float: right; margin-top: 1200px; width: 547px; height: 230px; background: url('http://www.blogcdn.com/blog.moviefone.com/media/2010/04/hit-girl-kick-ass-trailer-21-12-09-kc.jpg') left no-repeat;}
#little_container {width: 833px; height: 226px; float: right;}