4

我需要一个快速提示如何解决一些问题。我创建了一个导航栏并将其居中,所以现在无论屏幕大小,它都位于页面中间,但是如何使该栏保持在页面底部?我知道当我height.MainContainer它添加 a 时,将该条推到底部,但我想让它不受恒定高度的影响。非常感谢您的任何建议!


HTML

<html>
<head>
</head>  
<body>
    <div class="MainContainer">
    </div>  
    <div id="MenuContainer">
        <ul id="navigation">
            <li class="x"><a title="1" href="indexX-1.html" >1</a></li>
            <li class="x"><a title="2" href="#" >2</a></li>
            <li class="x"><a title="3" href="#" >3</a></li>
            <li class="x"><a title="4" href="#" >4</a></li>
            <li class="x"><a title="5" href="#" >5</a></li>
            <li class="contact" class="last"><a title="6" href="#" >6</a></li>
        </ul>
    </div> 
</body>
</html>

CSS

.MainContainer {
    width: 1200px;
    background-color: #0066CC;
}
.MenuContainer {
    height: 70px;
    bottom:0;
}
ul#navigation {
    height: 70px;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-width: 1px 0;    
    text-align: center;
    font-size: 22px;
    font-family: 'Cham-WebFont', Arial, sans-serif;
    background-color: #FFF;
}
ul#navigation li {
    display: inline;
    margin-right: .75em;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul#navigation li.last {
    margin-right: 0;
}
4

2 回答 2

4

通过制作htmlbody height:100%应用固定定位到您的导航。

html, body {
 height: 100%;
}

ul#navigation {
 position: fixed;
 bottom: 0;
 width: 100%;
}

这是一个 jsFiddle: http: //jsfiddle.net/nqKpe/1/
随意调整窗口大小,看看您的导航始终保持在底部。

于 2013-03-29T07:57:40.507 回答
0

这是一个适合你的JSFIDDLE

你有一个错字:

.MenuContainer {
    height: 70px;
    bottom:0;
}

应该:

#MenuContainer {
        height: 70px;
        bottom:0;
    }

根据您的 HTML。还添加position:fixed;

 #MenuContainer {
            height: 70px;
            bottom:0;
            position:fixed;
        }
于 2013-03-29T08:02:03.663 回答