html浮动底部

发布于 2024-12-20 05:38:24 字数 576 浏览 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>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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

忆沫 2024-12-27 05:38:24

使用表格执行此操作的常用方法是

  • 创建第二行为
  • 该行(及其中的单元格)指定固定高度
  • 将文本放入第二行的右侧列中

执行此操作的一种 CSS 方法(没有表格)将是

  • Give您想要将文本放置在 position:relative 右下角的容器
  • 将文本包裹在
  • 指定跨度 position:absolute;底部:0px;右:0px

The usual way to do this with tables is

  • Create a second row
  • Give that row (and the cells therein) a fixed height
  • Put the text into the right hand column in the second row

One CSS way to do this (without tables) would be

  • Give the container you want to place the text in the bottom right corner of position: relative
  • Wrap the text inside a <span>
  • Give the span position: absolute; bottom: 0px; right: 0px
顾挽 2024-12-27 05:38:24

使用样式 {style="vertical-align:baseline; text-align:right"}

Use style {style="vertical-align:baseline; text-align:right"}

笑忘罢 2024-12-27 05:38:24

试试这个:

    <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>

Try 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><p style="position:absolute; bottom:0px; right:0px;">FLOAT BOTTOM</p>
     </td>
   </tr>
 </table>
陌路终见情 2024-12-27 05:38:24

要使其浮动到包含它的数据单元格的右下角,您可能可以这样做

<span style="float:right; vertical-align:text-bottom">FLOAT BOTTOM</span>

To make it float to the bottom right of the data cell that contains it you could probably do

<span style="float:right; vertical-align:text-bottom">FLOAT BOTTOM</span>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文