Padding/marging 带页脚

Padding/marging with footer

正如您在我的网站上看到的那样 (http://student.howest.be/marnik.bruyndonckx/eindopdrachtweb/Musea) 我缺少一些 padding/margin 图像和页脚之间有一些 space。

这很奇怪,因为在其他几个页面 (http://student.howest.be/marnik.bruyndonckx/eindopdrachtweb/Winkelen) 中,图像和页脚之间有一个 space,当然是一样的。css文件

将以下样式也添加到页脚样式

footer {
   float: left;
   width: 100%;

只需在页脚之前添加另一个 <div style="clear: both"></div>,就像您在页眉之后使用它一样。或者将第二张图片移动到第二张 <p>.

解决方案:

footer {
  float: left;
  width: 100%;

}