My form is currently structured like this:
<form>
<fieldset>
name: textbox
lastname: textbox
address: textbox
</fieldset>
</form>
I would like the elements on my page to align as follows:
<form>
<fieldset>
name: textbox
lastname: textbox
address: textbox
</fieldset>
</form>
I am only using divs. Is there a different method I can use to achieve this alignment without resorting to tables? I want to ensure that my inputs are neatly organized for better navigation on the page.