Question

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?

Was it helpful?

Solution

<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>

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top