How to add a full width collapse in a table repeat

I would like on a table for a dynamic collapse to work work details of the table row.
I can get this to work in a cell, however I would like the dynamic collapse to be 100% width without destroying the table row above it.
At the moment if I add a row under the table row, then it will only allow me to add a cell, which I can not get this to goto 100%

Does anyone know a way of doing this.

Use the colspan attribute …

<td colspan="6">Your content</td>

https://www.w3schools.com/tags/att_td_colspan.asp

4 Likes

perfect, cheers @brad

1 Like