大家好, 第一次在 dreamweaver 遇到此导览列呈现按钮顺序巅倒的问题
首页 header 导览列码如下,
<div id="header">
<h1>公司名</h1>
<ul>
<li class="aboutus"><a href="aboutus.html">关于我们</a></li>
<li class="news"><a href="news.html">最新活动</a></li>
<li class="courses"><a href="courses">课程介绍</a></li>
<li class="contactus"><a href="contactus">联络我们</a></li>
<li class="location"><a href="location">位置环境</a></li>
</ul>
</div>
CSS layout :
#header li{
float:right;
list-style-type:none;
}
#header li a{
display:block;
background-image:url(image/....);
width:100px;
height:60px;
text-indent:-9999px;
}
F12 后导览按钮由左至右顺序却是: 位置环境->联络我们->课程介绍->最新活动->
关于我们
请问原始码设定哪里有问题吗 ? 谢谢