Automatic td adding in HTML?
Go to solution
Solved by Mr_KoKa,
When you're rowspaning, cell is not merging with the cell beneath it, instead it takes space of it and you just need to skip one cell that space is taken by the cell that you expanding by rowspan.
So when you rowspan you need to skip one cell beneath, if you colspan, you need to skip one to the right. but in your case it is only rowspan, but you need to skip cells in more than one row beneath.
Here is example: http://jsfiddle.net/qwLvx612/ you can see yellow cell that is about to get expanded by 2, using rowspan="3". It will push out purple cells beneath, so you need to get rid of them, I did it by commenting them out.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now