JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>

<div id="page1" data-role="page">
    <div data-role="header">
        <h1>Page 1</h1>
    </div>
    <div data-role="content">
        <a data-role="button" href="#page2">Forward</a>
    </div>
</div>

<div id="page2" data-role="page">
    <div data-role="header">
        <h1>Page 2</h1>
    </div>
    <div data-role="content">
        <a data-role="button" href="#page1">Back</a>
    </div>
</div>

CSS

body.ui-mobile-viewport {
    background : url(http://image.gsfc.nasa.gov/image/image_launch_a5.jpg);
}