如何在頁面中間的一行中創建水平導航欄和搜索框? 我使用文本對齊中心將導航欄放在頁面的中心,但是當我使用浮動使搜索框位於導航旁邊時,整個導航欄都會浮動到左側。導航欄和搜索框內嵌
body {
background-color: #C0C0C0;
margin: 0px;
}
.nav {
text-align: center;
list-style: none;
}
.nav li {
display: inline;
float: left;
}
<div id="title">
<p>
<h1>Welcome to KDU MUSIC CENTER</h1>
</p>
</div>
<div>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="findoutmore.php">Find out more</a></li>
<li><a href="offer.html">Offer</a></li>
<li><a href="credit.html">Credit</a></li>
<li><a href="#">Admin</a></li>
<li><a href="wireframe.html">WireFrame</a></li>
</ul>
<form class="formright">
<input type="text" placeholder="Search">
<button type="submit">Search</button>
</form>
some text
</div>
謝謝先生,我怎麼能把搜索欄就在導航欄旁邊? –
我更新了我的答案,看看是否適合你 –