所以我试图在左上角设置徽标,在右上角设置登录按钮。每当我在浏览器中运行它时,由于某种原因它们都不会停留在同一行。这是为什么?
<section class="container-fluid">
<div class="row-fluid">
<div class="col-md-6">
<h1>logo here</h1>
</div>
<div class="col-md-6">
<button>login here</button>
</div>
</div>
</section>