次のテーブルがあるとします。
<table>
<tr>
<td>Example</td>
</td>One</td>
</tr>
<tr>
<td>Example</td>
</td>Two</td>
</tr>
<tr>
<td>Example</td>
</td>Three</td>
</tr>
<tr>
<!--
Here I want to skip the first <td> cell; use only second. Example:
<td>(empty, possibly )</td>
<td>blah blah blah</td>
-->
</tr>
</table>
最後の行の私のコメントを読むと、最後の行で、テーブルの 2 番目の列に何かを表示したいことがわかります。最初の列は空のままです。どうすればこれを行うことができますか?
補足として、このSOの質問の質問/回答を読みましたが、colspanは私が望むものとは異なります。私はcssにも慣れていないempty-cell
ので、それが解決策である場合は、サンプルコードを少し提供してください。