I´m trying to simulate a table using only CSS and DIV. The problem is that nothing that I do can perfectly simulate a table layout behavior.
Below is the table layout
This is a horrid answer, I can't believe I'm even suggesting it, BUT, if you are hell bent on making a table out of divs...
As is stated in the comments, if it is a table, use a table, tables are not evil, they were just overused at one time to do things they weren't designed for. They are designed to display tabular data so if you can, use them.
This is only suggested if you MUST make a table with divs
There is a little known display property in CSS to help you with this, read here: table-cell css.
Again, just use a table, if you can.