如何正确定位页脚?

发布于 2024-11-09 14:15:47 字数 1523 浏览 0 评论 0原文

我想将页脚放置在 #wrapper 的基线处,但我似乎所能做的就是将页脚放置在包装器下方。有人可以告诉我为什么会发生这种情况吗?

另外,如果有人发现我当前的设计方式有问题并且有更好的方法,我愿意接受任何建议。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>sd</title>
<style type="text/css">
  html, body {
  width:100%;
  background:brown;
  border:0px solid red;
  margin:0;
  padding:0;
  }
  #wrapper {
  width:1220px;
  height:750px;
  padding:0;
  margin:0 auto;
  background:#ccc;
  border:3px solid white;
  }
  #header {
  background-color:#aaa;
  width:100%;
  height:100px;
  padding:0;
  margin:0 auto 0 auto;
  border:0px solid;
  }
  #content {
  float:left;
  width:100%;
  height:649px;
  padding:0;
  margin:0;
  border:0px solid;
  }
  #cell-left {
  background-color:#bbb;
  float:left;
  width:200px;
  height:100%;
  padding:0;
  margin:0;
  border:0px solid;
  }
  #cell-right {
  float:right;
  width:1010px;
  height:100%;
  padding:0;
  margin:0;
  border:0px solid;
  }
  #footer {
  float:left;
  width:100%;
  height:25px;
  padding:4px;
  margin:0;
  text-align:center;
  border:1px solid;
  }
  </style>
</head>
<body>
  <div id="wrapper">
    <div id="header"></div>
    <div id="content">
      <div id="cell-left">dsssd</div>
      <div id="cell-right">dsssd</div>
    </div>
    <div id="footer">sdsd</div>
  </div>
</body>
</html>

I want to position my footer at the baseline of my #wrapper but all I seem to be able to do is get the footer positioned below the wrapper. Can someone please tell me why this is happening?

Also, if someone sees a problem with how I have this currently designed and has a better way, I'm open to any suggestions.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>sd</title>
<style type="text/css">
  html, body {
  width:100%;
  background:brown;
  border:0px solid red;
  margin:0;
  padding:0;
  }
  #wrapper {
  width:1220px;
  height:750px;
  padding:0;
  margin:0 auto;
  background:#ccc;
  border:3px solid white;
  }
  #header {
  background-color:#aaa;
  width:100%;
  height:100px;
  padding:0;
  margin:0 auto 0 auto;
  border:0px solid;
  }
  #content {
  float:left;
  width:100%;
  height:649px;
  padding:0;
  margin:0;
  border:0px solid;
  }
  #cell-left {
  background-color:#bbb;
  float:left;
  width:200px;
  height:100%;
  padding:0;
  margin:0;
  border:0px solid;
  }
  #cell-right {
  float:right;
  width:1010px;
  height:100%;
  padding:0;
  margin:0;
  border:0px solid;
  }
  #footer {
  float:left;
  width:100%;
  height:25px;
  padding:4px;
  margin:0;
  text-align:center;
  border:1px solid;
  }
  </style>
</head>
<body>
  <div id="wrapper">
    <div id="header"></div>
    <div id="content">
      <div id="cell-left">dsssd</div>
      <div id="cell-right">dsssd</div>
    </div>
    <div id="footer">sdsd</div>
  </div>
</body>
</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空心空情空意 2024-11-16 14:15:47

您应该删除 #wrapper 上的固定高度 (height:750px) 和 正确清除#wrapper内的浮动元素

最简单的方法是将 overflow:hidden 添加到 #wrapper

参见: http://jsbin.com/iciwo6

更改后的 CSS:

#wrapper {
overflow:hidden;
width:1220px;
padding:0;
margin:0 auto;
background:#ccc;
border:3px solid white;
}

You should remove the fixed height on #wrapper (height:750px), and clear the floated elements inside #wrapper properly.

The easiest way to do this is to add overflow: hidden to #wrapper.

See: http://jsbin.com/iciwo6

The changed CSS:

#wrapper {
overflow:hidden;
width:1220px;
padding:0;
margin:0 auto;
background:#ccc;
border:3px solid white;
}
花想c 2024-11-16 14:15:47

您提到了包装器高度 750 显示出问题。只要说清楚并给出 height:auto
你已经给出了,

 header:  `height:100px;` 
content: height:649px;

所以它几乎需要 750px 。所以没有页脚空间。所以它就在包装器下方。所以尝试给出高度:自动。

You have mentioned the wrapper height 750 that is showing problem.Just make it clear and give height:auto
You have given

 header:  `height:100px;` 
content: height:649px;

so it is taking almost 750px .so there is no space for footer.so it is coming just below the wrapper.So try to give height:auto.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文