html:如何让文字位于页面的右下角

来源:百度知道 编辑:UC知道 时间:2024/06/20 03:51:05
网页保存为html格式,我想把ICP备案号放在页面的右下角,但不会写代码,哪位大虾可以帮我,谢谢!

把下面的代码复制到你的页面的</body>前面就行

<div style="position: absolute; bottom: 10px; right: 10px;">我在这里显示</div>

   

<table width="200" height="113" border="1">
<tr>
<td align="right" valign="bottom">备案</td>
</tr>
</table>

<div style="position:absolute;right:0px;bottom:0px;">备案号</div>