css tables for rowspan and colspan

前端 未结 2 413
终归单人心
终归单人心 2020-12-11 09:57

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

2条回答
  •  春和景丽
    2020-12-11 10:24

    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

提交回复
热议问题