I'm working on a straightforward table that showcases the properties of a data element. Each row will represent an element from the AJAX response in a list format.
The table is designed with "rowspan" and "colspan" to expand specific cells. However, I've encountered an issue where adding a new element below causes it to overlap the table inexplicably. The HTML is correctly structured, and the rowspan attributes are set to merge the correct number of rows.
Here's an example of the problem: http://jsfiddle.net/vtortola/KzjKg/9/
If you take a look, you'll see that the green block overlaps the table, which is something I'm trying to prevent.
Any insights into why this might be happening?
Cheers.