使用下面的代码时,我希望标题、登录和注册在标题 div 中,但是似乎只有标题,我很确定是 float:right 导致了问题,因为它在我工作时正常删除它。
<div id="container" style="width:100%">
<div id="header" style="background-color:#FFA500;padding:0;width:100%;">
<h1 style="margin-bottom:0;">Title</h1>
<p style="float:right;padding:5px;">login</p>
<p style="float:right;padding:5px;">sign up</p>
</div>
</div>
有人可以解释为什么会这样,也许可以建议我如何纠正它?
谢谢