JSFiddle - React, Tailwind, and code Playground
by needlethread
HTML
<link rel="stylesheet" href="http://demos.jquerymobile.com/1.4.5/css/themes/default/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://demos.jquerymobile.com/1.4.5/js/jquery.mobile-1.4.5.min.js"></script>
<body>
<div id="wrapper" data-role="page">
<div class="ui-grid-c ui-responsive">
<div class="ui-block-a">
<div class="ui-bar ui-bar-a" style="height:60px">
<!--
<label for="type1_sel">Type</label>
-->
<select name="type1_sel" id="type1_sel" data-native-menu="false" data-mini="true">
<option value=one selected="selected">Thing 1</option>
<option value=two>Thing 2</option>
<option value=three>Three</option>
</select>
</div>
</div>
<div class="ui-block-b">
<div class="ui-bar ui-bar-a" style="height:60px">
<!--
<label for="temp1">Temp (C):</label>
-->
<input type="text" name="temp1" id="temp1" placeholder="0" value="">
</div>
</div>
<div class="ui-block-c">
<div class="ui-bar ui-bar-a" style="height:60px">
<label for="mode1">Mode</label>
<input type="checkbox" name="mode1" id="mode1" data-mini="true">
</div>
</div>
<div class="ui-block-d">
<div class="ui-bar ui-bar-a" style="height:60px">
<p>47 %</p>
</div>
</div>
</div>
<!-- /grid-d -->
</div>
<!-- wrapper -->
</body>