1

我知道这对你们大多数人来说可能很简单,但它让我很恼火。我正在使用 Dreamweaver CS6 构建我的企业网站,以编辑从免费网站模板下载的模板。我遇到的问题是我无法将页脚右侧的链接放入页脚。我不确定这是 HTML 问题还是 CSS 问题。这是我正在谈论的一个例子:

左边距.........右边距

主页...关于...画廊...联系方式

似乎有多少链接并不重要,最后一个悬垂在页脚上。我很感激你能给我的任何帮助。谢谢你。

http://tinypic.com/r/2nvcljq/6

小提琴

#footer ul.navigation {
float: right;
display: inline-block;
line-height: 24px;
list-style: none;
margin: 0;
padding: 0;
}
#footer ul.navigation li {
float: left;
margin-left: 15px;
}
#footer ul.navigation li:first-child {
margin-left: 0;
}
#footer ul.navigation li a {
color: #ab7d0f;
font: 11px/24px "Oswald";
text-decoration: none;
text-transform: uppercase;
}
#footer ul.navigation li a:hover {
color: #241b18;
}
#footer #footnote {
color: #ab7d0f;
font: 11px/24px "Oswald";
margin: 0;
text-transform: uppercase;
}


<div id="footer">
    <div>
      <div id="links">
        <div class="showroom">

              <p>4885 Wilson Street<br> Victorville, CA 92392<br><br> 702-409-5373<br>
                <br> 
                  <a href="index.html">info@briarpatchfurniture.com</a>
          </p>
          </div>

        <ul class="navigation">
            <li><a href="index.html">Home</a>
                <a href="about.html">About</a><a href="gallery.html"> Gallery</a>
              <a href="contact.html">Contact</a>
            </li>
        </ul>
        <p id="footnote">
            © Copyright TIBISI, Inc 2013. All Rights Reserved.
      </p>
    </div>
</div>
4

2 回答 2

1

这对我来说看起来不正确:

<ul class="navigation">
    <li><a href="index.html">Home</a>
        <a href="about.html">About</a><a href="gallery.html"> Gallery</a>
        <a href="contact.html">Contact</a>
    </li>
</ul>

我假设如果打算使用列表,标记应该如下所示:

<ul class="navigation">
    <li><a href="index.html">Home</a></li>
    <li><a href="about.html">About</a><a href="gallery.html"> Gallery</a></li>
    <li><a href="contact.html">Contact</a></li>
</ul>
于 2013-03-09T04:04:42.457 回答
0

我建议#footer ul.navigation用这个替换当前规则

#footer ul.navigation {
    float: right;
    display: block;
    line-height: 24px;
    list-style: none;
    margin: 0;
    padding: 0 10px 0 0;
}

Fiddle 和您页面的页脚看起来不一样。

于 2013-03-09T04:02:29.817 回答