2012-05-18 59 views
0

以下是我的粘性頁腳代碼其工作正常,但我不知道爲什麼我的粘性頁腳沒有顯示在中心對齊的位置請讓我知道我該如何修改它來完成我的問題。 ..或者是否有任何其他好方法來製作貼紙滑板車。 謝謝,粘性頁腳一個非常小的問題

<table width="900" height="42" border="1" align="center" style="border-style:none; position: absolute;width: 900px;vertical-align: middle;text-align: center;z-index:999999999 !important; 

    bottom: 0px; 

" cellpadding="0" cellspacing="0" bordercolor="#AEAEAE" bgcolor="#0C4549"> 
    <tr> 
    <td align="center" bgcolor="#0C4549" >2012 &copy; of DND CLUB. Developed by Radiations3. 
     </div></td> 
    </tr> 
</table> 
+0

你嘗試保證金:0汽車;在風格? –

+2

而不是使用表格,你可以使用div,所以代碼會少一些,樣式也會比表格簡單一些。 – Shreedhar

回答

0

喜檢查這一項,我希望這將工作: -

<table width="100%" height="42" border="1" align="center" style=" 
position:absolute; 
left:0; 
right:0; 
vertical-align:middle; 
text-align:center; 
bottom: 0px; 
background:#0C4549;" 
cellpadding="0" cellspacing="0"> 
    <tr> 
    <td align="center">2012 &copy; of DND CLUB. Developed by Radiations3. 
     </td> 
    </tr> 
</table> 

演示: - http://jsfiddle.net/yFqPb/6/

0

td

<table width="900" height="42" border="1" align="center" style="border-style:none; position: absolute;width: 900px;vertical-align: middle;text-align: center;z-index:999999999 !important; bottom: 0px;" cellpadding="0" cellspacing="0" bordercolor="#AEAEAE" bgcolor="#0C4549"> 
    <tr> 
     <td align="center" bgcolor="#0C4549" >2012 &copy; of DND CLUB. Developed by Radiations3.</td> 
    </tr> 
</table> 
+0

不是訣竅.... – user1371693