问题是“.mainBody”部分中的 float div。页脚需要清除您在代码中 float 的 div。解决此问题的最佳方法是使用我们称为“clearfix hack”的方法。这是您的设置方式
CSS
//Add this to your CSS
.clearfix:after {
content: " "; /* Older browser do not support empty content */
visibility: hidden;
display: block;
height: 0;
clear: both;
}
HTML
// Add clearfix class to this div
<div class="mainBody clearfix">
<div class="leftBodyText">
<p>
// big block of code
</p>
</div>
<div class="rightBodyVideo">
<iframe width="560" height="315" src="https://www.youtube.com/embed/XDN9BXLFGhg" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div id="footer">
<p>
© The Geek Circle 2015
</p>
</div>
如果您有任何问题,请告诉我。
我是一名优秀的程序员,十分优秀!