我正在嘗試使用當前處於頁面底部的表格作爲頁腳,它需要位於頁面底部,並且不會隨着頁面上下滾動而移動。如何使用表格作爲頁腳?
這是我到目前爲止有:
HTML:
<table>
<tr>
<td class="footer">Weather Station Davis Vantage Pro2</td>
<td class="footer">Page Updated 14:46 01 November 2016</td>
<td class="footer">Powered By <a href="http://sandaysoft.com/products/cumulus" target="_blank">Cumulus</a> v3.0.0 (3041)</td>
</tr>
</table>
CSS:
.footer {
font-size: 10pt;
background-color: #FFFFFF;
color: #000000;
padding: 3px;
text-align: center;
}
我一直在使用TBODY標籤的嘗試,但什麼都沒有改變。
感謝,
威廉
這看起來不像表格數據。不要使用表格進行佈局。我們現在已經有了二十年的CSS了。 – Quentin
你如何使用表格作爲頁腳?你不......這就是如何 – mizurnix