为什么文本会沉到表格单元格的底部?

发布于 2024-11-25 18:05:33 字数 232 浏览 3 评论 0原文

<table>
<tr>
    <td>
        random text here
        <textarea value=""></textarea>
    </td>
</tr>
</table>

在浏览器中,文本位于底部。如何使其居中或顶部? TD 上的垂直对齐似乎不起作用。

<table>
<tr>
    <td>
        random text here
        <textarea value=""></textarea>
    </td>
</tr>
</table>

In the browser the text is at the bottom. How do I make it center or to top? vertical align on TD doesn't seem to work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

鲸落 2024-12-02 18:05:34

文本沿着一条线呈现。内联元素(例如文本区域)也会在该行上呈现。

文本位于表格单元格的底部,因为它与文本区域位于同一行,并且文本区域占据了单元格的整个高度。

您想要更改该行上文本区域的位置,但您可以这样做:

textarea {
    vertical-align: middle; /* other values are available */
}

Text is rendered along a line. Inline elements (such as the textarea) are also rendered on that line.

The text is at the bottom of the table cell because it sits on the same line that the textarea sits on and that textarea takes up the entire height of the cell.

You want to change the position of the textarea on that line, but you can do so:

textarea {
    vertical-align: middle; /* other values are available */
}
请帮我爱他 2024-12-02 18:05:34

gathcea:

您可以将文本放在上面的一行中:

<table>
    <tr>
      <td> 
        <p>random text here</p>
      </td>
    </tr>
    <tr>
      <td>
        <textarea value=""></textarea>
      </td>
    </tr>
</table>

或者使用换行符将文本区域放在其下方:

<table>
    <tr>
      <td>
        <p>random text here</p>
        <br />
        <textarea value=""></textarea>
      </td>
    </tr>
</table>

gathcea:

You can put your text in a row above:

<table>
    <tr>
      <td> 
        <p>random text here</p>
      </td>
    </tr>
    <tr>
      <td>
        <textarea value=""></textarea>
      </td>
    </tr>
</table>

Or use a line break to put the text area underneath it:

<table>
    <tr>
      <td>
        <p>random text here</p>
        <br />
        <textarea value=""></textarea>
      </td>
    </tr>
</table>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文