我正在为我的网站创建一个菜单栏,我想知道自己是否正确执行此操作。

有没有更好的方法来达到相同的结果?似乎过度使用3 divs。

这是我目前的处理方式:

<!DOCTYPE html>
<html>
<head>

<style type="text/css">
#topbar {
    background: #487BC0;
    width: 100%;
}

#container {
    width: 960px;
    margin: 0 auto;
}

#links {
    padding: 15px 0 15px 840px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 30px;
}

#content {
    position: relative;
    background: #f6f6f6;
    width: 960px;
    height: 100%;
    margin: 0 auto;
}

</style>

</head>
<body>

<div id="topbar">
    <div id="container">
        <div id="links">Login | Register</div>
    </div>
</div>

<div id="content">Content goes here</div>

</body>
</html>

最佳答案

我不是大师,但也许这样的事情行得通吗?

<!DOCTYPE html>
<html>
<head>

<style type="text/css">
#container {
background: #487BC0;
width: 100%
min-width: 960px;
margin: 0 auto;
}

#container > span {
display: block;
padding: 15px 0 15px 840px;
color: #fff;
font-size: 14px;
margin-bottom: 30px;
}

#content {
position: relative;
background: #f6f6f6;
width: 960px;
height: 100%;
margin: 0 auto;
}

</style>

</head>
<body>

<div id="container">
    <span>Login | Register</span>
</div>

<div id="content">Content goes here</div>

</body>
</html>


再说一次,我不是上师

09-25 18:32
查看更多