我有一张这样的桌子:
<table border="1">
<thead>
<tr>
<th colspan="2">Items</th>
<th colspan="2">Type</th>
<th colspan="4">Values</th>
<th colspan="2">Date</th>
</tr>
<tr>
<th colspan="2"></th>
<th colspan="2"></th>
<th colspan="2">Before</th>
<th colspan="2">After</th>
<th colspan="2"></th>
</tr>
</thead>
<tbody></tbody>
在表格的标题中,我想有 headers Items
,Type
并Date
垂直居中。我尝试rowspan="2"
在这些标题上使用,但没有奏效。请问有什么想法吗?