Is it possible to have a visual separator between two rows ( tr ) in an HTML table.
I tried with <br> , but this is invalid code.
I tried adding the top of the tr add-on after the break, but this will not work.
I am currently using an empty string:
<tr><td colspan=\"X\"> </td></tr>
but I donโt think this is the best solution, especially since I have to make sure that colspan adjusted if there is a change - the number of columns.
Is there any way to solve this?
source share