页脚仅重叠一页

时间:2017-07-10 14:38:38

标签: php html css

页脚与我的某个网页重叠。所有其他页面都很好,但这个重叠,我真的不想编辑/更新页脚,因为它在其他页面中工作,但我想看看是否有我可以用这个页面的css容器做的事情

CSS

#box {
  width: 100%;
  height: auto;
  margin-top: 20px;
  position:relative;
  padding-right:0.4%;
  float:left;
  margin-bottom: 10px;
}

.boxChildLeft {
  left: 0;
  width: 80%;
  height: 100px;
  border: 1px solid;
  margin-bottom: 2px;
  position: relative;
  float: left;
}

CSS页脚/正文等

html,
body {
  margin:0 auto;
  padding: 0;
  max-width: 960px;
  height: 100%;
  background-color: white;
}
#container {
  min-height:100%;
  position:relative;
}
#header {
  background:white;
  padding:10px;
}
#body {
  padding:10px;
  padding-bottom:40px;   /* Height of the footer */
}
#footer {
  position: absolute;
  bottom:0;
  left: 0;
  right: 0;
  height:40px;   /* Height of the footer */
  background:#EBEBEB;
  border-radius: 5px;
}

PHP / HTML

for($temp = 1; $temp <= $cArray[2]; $temp++)
{
  $img .= "<div class='boxChildLeft'>
            <div class='img'>
              <img src='../ProductImages/$cArray[0].jpg' width='100px' height='100px'>
            </div>
            <div class='prodInfo'>
                  <p1>$pName</p1><br>
                  <span id='sp'><p1>$pPrice<p1>
                  </span>
            </div>
         </div>";
}

HTML

<div id="box">
    <?php echo $img;?>
</div>

1 个答案:

答案 0 :(得分:0)

您提供的信息不够(没有提供足够的网页代码),我建议使用W3school HTML validator它会指出您的HTML实施中缺少什么,有时候它可以通过提供建议来帮助你。