因此,我試圖創建一個水平列表以供我在設計的新網站上使用。我已經嘗試了一些已經在網上找到的建議,例如將'float'設置爲左側等,但在修復問題時這些建議都沒有奏效。CSS水平列表項目
ul#menuItems {
background: none;
height: 50px;
width: 100px;
margin: 0;
padding: 0;
}
ul#menuItems li {
display: inline;
list-style: none;
margin-left: auto;
margin-right: auto;
top: 0px;
height: 50px;
}
ul#menuItems li a {
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
font-weight: bolder;
color: #000;
height: 50px;
width: auto;
display: block;
text-align: center;
line-height: 50px;
}
<ul id="menuItems">
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="index.php">DJ Profiles</a>
</li>
</ul>
目前我不能確定是什麼原因造成這個問題的,我將如何去化解呢?
使用'float'屬性 – Ron
請參閱http://css.maxdesign.com.au/listutorial/index。htm –