为什么文本会沉到表格单元格的底部?
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文本沿着一条线呈现。内联元素(例如文本区域)也会在该行上呈现。
文本位于表格单元格的底部,因为它与文本区域位于同一行,并且文本区域占据了单元格的整个高度。
您想要更改该行上文本区域的位置,但您可以这样做:
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:
gathcea:
您可以将文本放在上面的一行中:
或者使用换行符将文本区域放在其下方:
gathcea:
You can put your text in a row above:
Or use a line break to put the text area underneath it: