Is there a possibility to have a visual separator between two lines (tr
) in an HTML table.
I tried with a <br>
but this is not valid code.
I tried do add a padding-top to the tr
after the break but it does not work.
Currently I use an empty line:
<tr><td colspan=\"X\"> </td></tr>
but I don't think this is the best solution, especially as I have to make sure the colspan
is adjusted if there is a change is the number of columns.
Is there any way to solve this?