-
Notifications
You must be signed in to change notification settings - Fork 128
Closed
Description
Given the following HTML table:
<table border="1">
<thead>
<tr>
<th colspan="2" rowspan="2">Header 1</th>
<th colspan="2">Header 2</th>
<th colspan="2" rowspan="2">Header 3</th>
</tr>
<tr>
<th>Sub-header 2.1</th>
<th>Sub-header 2.2</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">Data 1.1</td>
<td rowspan="2">Data 1.2</td>
<td rowspan="2">Data 2.1</td>
<td rowspan="2">Data 2.2</td>
<td>Data 3.1.1</td>
<td>Data 3.1.2</td>
</tr>
<tr>
<td>Data 3.2.1</td>
<td>Data 3.2.2</td>
</tr>
</tbody>
</table>
The HTML output renders as:
However the Word output is:
I have highlighted in red an empty cell which is added in the wrong location.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

