My Code is......

<table>
  <tr>
    <td>1</td>
    <td>2</td>
  </tr>
  <tr>
    <td> </td>
    <td> </td>
  </tr>
  <tr>
    <td>3</td>
    <td>4</td>
  </tr>
</table>

Row two doesn't show. How can I do it?

有帮助吗?

解决方案

<table border="1">
  <tr>
    <td>1</td>
    <td>2</td>
  </tr>
  <tr>
    <td > &nbsp</td>
    <td >&nbsp</td>
  </tr>
  <tr>
    <td>3</td>
    <td>4</td>
  </tr>
</table>

其他提示

Have you tried adding <td>&nbsp;</td> ?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top