Spanning column text across 3 columns of a grid (table) is my current challenge. I want the text to begin in the 3rd column and wrap around to the end of the 5th column.
I successfully managed to span it by applying a CSS style to the 3rd column's class - overflow: visible
Now, I need to ensure that this span ends at the 5th column and wraps the text accordingly.
Unfortunately, modifying the table's HTML to add another table or col-span property is not an option as the grid is dynamic. Do you think it's possible to achieve this using JavaScript and CSS?