对齐导航和标题

时间:2013-02-09 10:25:19

标签: html css

我的标题部分有点搞砸了。我的导航菜单被置于实际标题下方。我已经尝试将显示更改为内联,但是当我对#navmenu执行此操作时,它会清除颜色并完全保持不变。

我知道几乎我提出的每个问题都有一个简单的答案,但有人可以帮助我吗?

HTML:

<!DOCTYPE html>

<html>

    <head>
        <meta name="Description" content="This is your test website!"/>
        <meta name="author" content="Me!"/>
        <title>ReallyGoodPie | Home</title>
        <link type="text/css" rel="stylesheet" href="css/style.css"/>
    </head>

    <body>

        <div id="wrapper">
            <nav id="navmenu">
            <div id="title">
                <h1>Title</h1>
            </div>

                <ul>
                    <li>Home</li>
                    <li>About</li>
                    <li>Tutorials</li>
                    <li>Services</li>
                    <li>Contact Us</li>
                </ul>
            </nav>

            <aside id="sidenews">

            </aside>

            <div id="center">

                <section id="mainsection">
                    <article>
                        <header>
                            <hgroup>
                                <h1>This is a test</h1>
                                <h2>I like tests!</h2>
                            </hgroup>
                        </header>
                        <section>
                            <p>This is the main section of my section (sectception)</p>
                        </section>
                        <footer>
                            <p>Time and date</p>
                        </footer>
                    </article>
                </section>

            </div>

            <footer id="cright">
                <p>This is the copyright section. All rights reserved.</p>
            </footer>
    </body>

</html>

CSS:

*{
margin: 0;
padding: 0;
}

header, section, footer, aside, nav, article, hgroup{
    display: block;
}

a{
    text-decoration: none;
    color: #FFF;
}

a:hover{
    color: #333399;
}


#wrapper{
    width: 100%;
    margin: 20px auto;
    margin-top: 0px;
    text-align: left;
    background-color: #FFF;
}

#navmenu{
    background: #3366CC;
    color: #eee;
    text-align: right;
    height: 100px;
    padding: 0;
    margin:0;
    float: top;
    width: 100%;
}

#navmenu li{
    display: inline-block;
    list-style: none;
    padding: 20px;

}

#navmenu ul{
    padding-right: 10px;
}

#navmenu li:hover{
    color: #FFF;
    background: #3399FF;
    border-radius: 5px;
    -moz-border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}




#mainsection{
    float:left;
    width: 630px;
    margin:30px;
    margin-top: 2
    background-color:#FFF;
    color: #222;
    text-align: left;

}

#cright{
    text-align:center;
    background-color: #AAA;
    clear: both;
}

#center{
    width: 1000px;
    height: 1000px;
    background-color:#FFF;
}

#sidenews{
    float:right;
    width: 250px;
    height: 940px;
    margin: 0px 0px;
    padding: 30px;
    background-color:#FFF;
}

#title{
    text-align: left;
    padding: 0;
    padding-top: 10px;
    padding-left: 10px;
    width: 200px;
}

h1{
    width: 100px;
}

3 个答案:

答案 0 :(得分:2)

如果我理解您的“问题”,您希望标题留在导航栏中吗?在这种情况下,您需要使用:

#title
{
    float: left;
}

http://jsfiddle.net/z3F4x/

答案 1 :(得分:0)

navmenu ultitle的浮动属性设置为left

#title{
    text-align: left;
    padding: 0;
    padding-top: 10px;
    padding-left: 10px;
    width: 100px;
    float: left;
}

#navmenu ul{
    padding-right: 10px;
    float:left;
}

工作示例:http://jsfiddle.net/J5Zvn/

答案 2 :(得分:0)

如果您希望将标题置于顶部,则将您的标题移至navmenu之外,如果您需要,则将其移至下方

          <div id="wrapper">
          <div id="title">
                    <h1>Title</h1>
                </div>
            <nav id="navmenu">

                <ul>
                    <li>Home</a>
                    <li>About</li>
                    <li>Tutorials</li>
                    <li>Services</li>
                    <li>Contact Us</li>
                </ul>