
这是实际的 HTML 和 CSS,页脚中没有所需的溢出
- http://jsfiddle.net/KristjanLaane/cHmkj/10/
- (将结果窗口调整为宽度较小的窗口以查看问题)
并且应该使用 iframe
与您在小提琴中看到的不同,我实际上使用 iframe 以便在许多网页中重用导航元素:
<body>
<iframe class="header" src="header.html">
</iframe>
<div class="wrapper">
  <div class="left">
    <div class="holder">
      <div class="content">
      </div>
    </div>
    <iframe class="footer" src="footer.html">
    </iframe>
  </div>
</div>
</body>