如何定位按钮以使它们与另一个元素水平对齐?

时间:2014-04-20 05:10:15

标签: html css alignment positioning

我的造型需要一些帮助。我想要一个漂亮的网站,但我似乎无法做到这一点。我试过浮子,但无济于事。我希望将“Aspen Development”作为品牌名称,然后将我的按钮放在div的右侧。这是我的HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Aspen Development | Home</title>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    </head>

    <body> 
    <div id="container">
      <div id="navMenu">
        <div id="header">
                <div id="brand"><a href="index.html">Aspen Development</a></div>
                <ul>
                  <li class="navButton">Home</li>
                  <li class="navButton">Pricing</li>
                  <li class="navButton">Contact Us</li>
                </ul>
        </div>
      </div>
      <div id="content">
        <div id="contentContainer">
        <p><b>4.21.14</b> Welcome to Aspen Development.</p>
        <p><b>4.19.14</b> The website has been created!</p>
        </div>
      </div>
      <div id="footer">
        <center><p style="margin-top: 17px; margin-bottom: 20px; font-size: 0.75em; ">Copyright &copy; 2014 Aspen Development | All Rights Reserved</p></center>
      </div>
    </div>
    </body>
</html>

我的CSS:

@charset "utf-8";

body, h1, h2, h3, h4, h5, h6, p, div {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FFF;
}

#navMenu, #footer {
    width: 100%;
    height: 50px;
    background-color: #F8F8F8;
    border: 2px solid #E6E6E6;
}

#header {
    width: 1140px;
    height: 50px;
    margin: 0 auto;
    text-align: right;
}

#brand a {
    display: block;
    width: 175px;
    padding-top: 12px;
    padding-bottom: 16px;
    padding-left: 14px;
    padding-right: 14px;
    color: black;
    font-size: 1.25em;
    text-align: justify;
    text-decoration: none;
}

.navButton {
    display: block;
    width: 175px;
    padding-top: 12px;
    padding-bottom: 16px;
    padding-left: 14px;
    padding-right: 14px;
    color: black;
    font-size: 0.75em;
    text-align: justify;
    list-style: none;
}

#content {
    width: 100%;
}

#contentContainer {
    width: 1140px;
    margin: 0 auto;
}

#contentContainer p {
    margin: 20px;
}

提前致谢。 :)

4 个答案:

答案 0 :(得分:0)

只要您为标题指定了高度,为什么不轻易使用float: leftfloat: right

#brand{
    float: left;
}

.navButton {
    float: right;
}

答案 1 :(得分:0)

添加 CSS 类:

ul{
    float:right;    
}

#brand {
    float:left;
}

添加到.navButton

display: inline-block;

并添加到#header

overflow:hidden; 

同时替换:

width: 1140px; 

min-width: 1140px;
width: 100%;
<{1}}和#navMenu, #footer中的

检查Fiddle

答案 2 :(得分:0)

这是一个容易出问题的问题。你搞砸了css坏了。这是link以及更改后的css和HTML。

希望它有所帮助...我已经使用元素id更新了css尽量不这样做,总是使用css类,除非你有一个非常好的理由不这样做。

答案 3 :(得分:0)

我已经创建了 fiddle 来帮助您解决问题。

在.navButton类中使用float: left并将clearfix类添加到包含.navButton元素的ul中。 clearfix类的样式定义也写在小提琴中。请尝试告诉我们。