英文:
Formatting text in the with CSS
问题
我使用HTML创建了一个表格,但我希望每行的文本位于每个单元格的顶部,而不是居中。如果您有解决方案,请帮忙。
我希望文本位于每个单元格的顶部,但实际上它只在中间。
英文:
I created a table with HTML, but I want my text in each row to be at the top of each cell and not at the center. Please help if you have a solution
I expected the text to be at top: 0
of each cell but it's just at the center
答案1
得分: 1
vertical-align: top;
可以为您完成这项操作。
检查下面的示例:
table {
border-collapse: collapse;
}
table tr td {
height: 100px;
border: 1px solid #ddd;
vertical-align: top;
padding: 5px;
}
<table>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
英文:
vertical-align: top;
does the magic for you.
Check the below example
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-css -->
table {
border-collapse: collapse;
}
table tr td {
height: 100px;
border: 1px solid #ddd;
vertical-align: top;
padding: 5px;
}
<!-- language: lang-html -->
<table>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论