How do you insert multiple <br> into an html table without altering its' overall

Ian

New member
proportion? So, if I cut the br tags from the code below (and their respective table row and data tags as well) the overall shape and placement of the table on the page changes.

Is there a way to use <br> tags within a table, whilst keeping its' placement on the page, and only extending the table downward (what <br> tags should do, right?)?

Here's the code:

<table>

<tr>
<td>
blah blah blah
</td>
</tr>

<tr>
<td>
<br>
<br>
<br>
<br>
<br>
</td>
</tr>

<tr>
<td>
blah blah blah
</td>
</tr>

</table>
 
Back
Top