我有这个简单的 HTML 表格。
<table align="center" border="1" cellpadding="0" cellspacing="0" style="width:1000px">
<thead>
<tr>
<th scope="row">BB<br />
BB<br />
BB</th>
<th scope="col">AA</th>
<th scope="col">AA</th>
<th scope="col">AA</th>
<th scope="col">AA</th>
<th scope="col">AA</th>
<th scope="col">AA</th>
<th scope="col">AA</th>
<th scope="col">AA</th>
<th scope="col">AA</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p> </p>
但我希望 AA 单元格在顶部垂直(现在它的中心垂直),并且我希望表格上方的空间并将表格左侧为 0。
在html中渲染简单的代码我会明白我的意思。
现在我想链接一个简单的 CSS 来制作这个功能,但是我该怎么做呢?
更新,CSS中的解决方案是:
th{
vertical-align:top;
}
body
{
margin: 0;
padding: 0;
}