JSFiddle - React, Tailwind, and code Playground
by bvotcode
HTML
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css">
<div>
<span class="inlineinput">
<input type='text' placeholder="First and last name" style='display: inline; width: 50px;' />
</span>
<span class="inlineinput">
<input type='text' placeholder="phone number" style='display: inline; width: 50px;' />
</span>
</div>
CSS
.inlineinput div {
display: inline;
}