Wrapping HTML table rows in tags

后端 未结 9 1025
难免孤独
难免孤独 2020-12-03 00:55
9条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-03 01:24

    as a link in each td is not a good alternative and using js is a bit dirty, here is another html/css approach:

    HTML:

    
    

    CSS:

    .table { display:table; }
    .table-row { display:table-row; }
    .table-cell { display:table-cell; }
    

提交回复
热议问题