I am creating a table out of div\'s and need a method replicating the effect of a cell that spans 5 rows and a cell that spans 2 columns.
This is what I have for a f
colspan
and rowspan
are not avalaible in CSS, these are really specific to real table tag/elements.
You should rethink your structure/imbrication if it has some meanings :).
DEMO
title
subtitle
Cell
Cell
Cell
Cell
Cell
Cell
display:table-caption
is avalaible and could be used : DEMO 2
display:table-header-group;
is avalaible too : DEMO 3