I don’t have the page published yet. Maybe you could clarify how to use the wpautop function? Below is the basic html, and I would expect the select dropdown do show next to the Gender:, but the select dropdown is showing up towards the top of the page. I do not have any other css for the rda class.
<div class=”rda”>
<div>Age: <input type=”number” id=”age” min=”0″ max=”120″ step=”0.1″
style=”width:6em”>
</div>
<div>Gender:
<select id=”gender”>
<option value=””>–Choose an option–</option>
<option value=”male”>Male</option>
<option value=”female”>Female</option>
<option value=”pregnant”>Female: pregnant</option>
<option value=”lactate”>Female: lactating</option>
</select>
</div>
…
</div>