2017-07-10 128 views
0

頁腳重疊在我的一個網頁上。所有其他頁面都很好,但這是一個重疊,我真的不想編輯/更新頁腳,因爲它在其他頁面中工作,但我想看看是否有什麼我可以做與本頁的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> 
+2

不能真正幫助當前的信息,你能提供一些你的頁腳代碼嗎? – Samuel

回答

0

您提供的信息還不夠(沒有提供足夠的頁面代碼),我建議使用W3school HTML validator它會指出HTML實現中缺少的內容,有時它會通過提供建議幫助您。