导航栏故障

时间:2013-10-31 09:34:58

标签: css html5

我正在使用导航栏来处理我正在进行的项目。我一直遇到水平导航栏的麻烦,我到处寻找正确的解决方案,但没有成功。导航栏向左移动,所以我在我的CSS中添加了一些填充,现在它居中,但是文本没有居中,而第一个链接的悬停效果并不覆盖整个“框”文字在。

CSS:

/* Entire Document CSS */
html{
    height: 100%;
}
/* Header CSS */
.headers{
    color: #FFFFFF;
    text-align: center;
    padding: 30px;
    margin-bottom: 0px;
    margin-top: 0px;
    background-color: #63B8FF;
}
.headers2{
    color: #FFD89A;
    text-align: center;
    padding: 10px;
}
/* Body CSS */
.body{
    background-color: #61B329;
    height: 50%;
    color: #FFFFFF;
}
.container{
    margin-left: auto;
    margin-right: auto;
    width: 50em;
    text-align: center;
    padding-bottom: 500px;
    height: 50%;
}
/* Navigation CSS */
.nav{
    display: inline-block;
    background-color: #00B2EE;
    border: 1px solid #000000;
    border-width: 1px 0px;
    margin: 0px 0px 0px 0px;
}
.nav li{
    display: inline-block;
}
.nav a{
    display: inline-block;
    padding: 10px 110px 10px 0.80px;
    text-align: center;
}
/* Footer CSS */
#footer {
 clear: both;
 position: relative;
 z-index: 10;
 height: 3em;
 margin-top: -3em;
}
#content {
    padding-bottom: 3em;
}
/* Link CSS */
a:link{
    color: #FFFFFF;
    text-decoration: none;
}
a:visited{
    color: #FFFFFF;
    text-decoration: none;
}
a:hover{
    background-color: #028482;
    color: #FFFFFF;
    text-decoration: overline;
}
a:active{
    background-color: #FF9C00;
    color: #FFFFFF;
    text-decoration: underline;
}
.Links A:hover{
    color: #028482;
    background-color: transparent;
    text-decoration: underline overline;
}

HTML5(索引页)

<!doctype html>
<html lang="en">

    <head>
        <meta charset="utf-8" />
        <title>Play - Learn - Grow</title>
        <link rel="stylesheet" href="main.css">
    </head>

    <body class="body">

        <h1 class="headers">Welcome to KUBE Toy Library!</h1>

        <nav>
            <ul class="nav">
                <li><a href="index.html">Home</a></li>
                <li><a href="about.html">About Us</a></li>
                <li><a href="contact.html">Contact Us</a></li>
                <li><a href="membership.html">Become a Member</a></li>
                <li><a href="borrow.html">Borrow Toys</a></li>
                <li><a href="policies.html">Our Policies</a></li>
                <li><a href="sitemap.html">Site Map</a></li>
            </ul>
        </nav>

        <h2 class="headers2">Welcome to the Home Page!</h2>

        <div class="container">

            Our aim is to provide the children of the community with an ever-changing variety of educational and fun toys to enhance
            their cognitive, social, emotional and physical development in the important first six years of their lives.

            <br><br><span class="Links">Be sure to check out our Wikispace site with more information <a href="http://mysocialmediatools-pn.wikispaces.com/">here</a>!</span>

        </div>

        <div id="content"></div>

        <div id="footer">
            Copyright &copy 2013
        </div>


      </body>

</html>

请注意,与本论坛的其他人相比,我相当新鲜,所以请放轻松一点! :)这也是一个虚构的公司,等我给的任务。谢谢!

2 个答案:

答案 0 :(得分:0)

演示: http://jsfiddle.net/NphBK/

这是一个常见问题。但要解决此问题,您需要制作父text-align: center并给孩子display: inline-block;

如果您希望完全均衡,则需要切换为display: tabledisplay: table-cell

答案 1 :(得分:0)

您的浏览器中的页面如下所示 enter image description here

我更改了你的css以使其独立于浏览器分辨率。作为一名UI开发人员,我觉得上线看起来不太好,所以我删除了它。使用我的代码

/* Body CSS */
.body {
    background-color: #61B329;
    color: #FFFFFF;
}

/* Header CSS */
.headers {
    color: #FFFFFF;
    text-align: center;
    padding: 30px;
    margin: 0;
    background-color: #63B8FF;
}

.headers2 {
    color: #FFD89A;
    text-align: center;
    padding: 10px;
}

.container {
    margin: 0 auto;
    width: 50em;
    text-align: center;
    padding-bottom: 500px;
}

/* Navigation CSS */
.nav {
    display: inline-block;
    background-color: #00B2EE;
    border: 1px solid #000000;
    border-width: 1px 0px;
    margin: 0;
    padding: 0;
    min-width: 1000px;
    width: 100%;
}

.nav li {
    list-style-type: none;
    width: 14.28%;
    float: left;
}

.nav a {
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

/* Footer CSS */
#footer {
 clear: both;
 position: relative;
 z-index: 10;
 height: 3em;
 margin-top: -3em;
}

#content {
    padding-bottom: 3em;
}

/* Link CSS */
a:link,
a:visited,
a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    background-color: #028482;
}

a:active {
    background-color: #FF9C00;
    color: #FFFFFF;
    text-decoration: underline;
}

.Links A:hover {
    color: #028482;
    background-color: transparent;
    text-decoration: underline overline;
}