I'm struggling to get two divs to display next to each other without the formatting going haywire. Can anyone help me solve this issue?
<div class="pull-right" style="width:400px;">
<div style="float:left; margin-right:90px;">
<b>Registered owners</b>
<div id="ctl00_ContentPlaceHolder1_unitRegOwners">Robert<br /></div>
</div>
<div>
<b>Registered tenants</b>
<div id="ctl00_ContentPlaceHolder1_unitRegTenants">Jenny Garth<br />Mike Mechanic<br />Joe Rogan<br />Test Test<br />John Doe<br /></div>
</div>
</div>
The problem I'm facing is that only the first tenant shows up under Registered Tenants, while the rest are mistakenly listed under Registered Owners. It seems like there's an issue with the div wrapping or something similar.
(Please disregard the server side tags and classes, as removing them doesn't change the issue.)
I would greatly appreciate any assistance in resolving this!