我有如下表:拆分表格單元格成兩列HTML
<table border="1">
<tr>
<th scope="col">Header</th>
<th scope="col">Header</th>
<th scope="col">Header</th>
</tr>
<tr>
<th scope="row"> </th>
<td> </td>
<td>Split this one into two columns</td>
</tr>
</table>
我要拆分含有細胞「拆分此一進兩列」成兩個細胞/列。我如何去做這件事?
定義「拆分爲兩列」。哪些列?如果你的意思是你想在表格中添加一列並將部分單元格內容移動到新列,那麼可能會有什麼問題呢?只需添加一列,每行添加一個單元格。 –