Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用一些文字制作了一个表格,它会自动垂直居中。例子:
如何使文本从顶部开始?我的意思是正常的方式,你知道的。
垂直对齐
vertical-align CSS 属性指定内联或表格单元格元素的垂直对齐方式。
html
<table class="someClass"> <tr> <td>Hello World</td> </tr> </table>
css
.someClass td { vertical-align: top; }
试试这个:
<table> <tr> <td valign="top"> .... </td> </tr> </table>