I need to align two block elements horizontally, one being a FORM and the other a DIV.
<div id="miningArea">
<form id="curWorkForm">...</form>
<div id="buttonDescription">
To start, click the "Start" button.
</div>
</div>
Initially, I tried using display:inline-block
to achieve this but encountered issues as the text element still appeared below the FORM element - see https://jsfiddle.net/5j57hkLr/6/. How can I successfully have both elements appear on the same line?