我想让文字浮动到现有标签的最右下角。
我还在使用旧学校表(编辑现有代码)。我的代码是这样的:
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="50%"></td>
<td width="50%" valign="top">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" valign="top">KEEP UP TOP</td>
</tr>
</table>FLOAT BOTTOM
</td>
</tr>
</table>
说FLOAT BOTTOM的文字显然不明显。如何让它始终保持在最右下角?
答案 0 :(得分:1)
使用表格的常用方法是
一种CSS方式(没有表格)将是
position: relative
<span>
position: absolute; bottom: 0px; right: 0px
答案 1 :(得分:0)
使用样式{style="vertical-align:baseline; text-align:right"}
答案 2 :(得分:0)
试试这个:
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="50%"></td>
<td width="50%" valign="top">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" valign="top">KEEP UP TOP</td>
</tr>
</table><p style="position:absolute; bottom:0px; right:0px;">FLOAT BOTTOM</p>
</td>
</tr>
</table>
答案 3 :(得分:0)
要使其浮动到包含它的数据单元格的右下角,您可以执行
<span style="float:right; vertical-align:text-bottom">FLOAT BOTTOM</span>