html浮动底部
我想让文本浮动到现有标签的右下角。
我仍在使用旧的学校表格(编辑现有代码)。我的代码是这样的:
<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”的文字显然并不明显。如何让它始终保持在右下角?
I want to make text float to the very bottom right hand corner of an existing tag.
I'm still using old school tables (editing existing code). My code is this:
<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>
The text that says FLOAT BOTTOM, doesnt obviously. How do make it so that always stays at the very bottom right corner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用表格执行此操作的常用方法是
执行此操作的一种 CSS 方法(没有表格)将是
position:relative
右下角的容器中
position:absolute;底部:0px;右:0px
The usual way to do this with tables is
One CSS way to do this (without tables) would be
position: relative
<span>
position: absolute; bottom: 0px; right: 0px
使用样式
{style="vertical-align:baseline; text-align:right"}
Use style
{style="vertical-align:baseline; text-align:right"}
试试这个:
Try this:
要使其浮动到包含它的数据单元格的右下角,您可能可以这样做
To make it float to the bottom right of the data cell that contains it you could probably do