在下面的代码中,我想将内容 div 中的文本(右侧的那个)对齐到靠近边框,离导航菜单不远我知道这是由于我的导航菜单向左浮动,但我做不到!!!!
<div style="position:relative; top:10px; float:left; border: 1px blue dashed; width:150px">
<ul>
<li style="margin-top:2px; padding-bottom:15px; list-style-type:none"><a href="index.html">Home</a></li>
<li style="margin-top:2px; padding-bottom:15px; list-style-type:none"><a href="Listings.html">Listings</a></li>
<li style="margin-top:2px; padding-bottom:15px; list-style-type:none"><a href="Financing.html">Financing</a></li>
<li style="margin-top:2px; padding-bottom:15px; list-style-type:none"><a href="contact.html">Contact</a></li>
</ul>
</div>
<div style="position:relative; top:10px; border: 1px red dashed; left:155px; width:800px; min-height:600px">
test
</div>