Convert TD columns into TR rows

后端 未结 4 784
时光取名叫无心
时光取名叫无心 2020-11-28 12:42

Is there a quick way to translate (using CSS or Javascript) a tables TD into TR, currently I have:

A B C D
1 2 3 4

and I want to translate

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-28 13:08

    This is a solution, in this case this was for for mobiles and tablets, remove the media queries and the th position absolute and u have it!

    based on this:

    table, thead, tbody, th, td, tr { 
    display: block; 
    }
    

    http://css-tricks.com/responsive-data-tables/

提交回复
热议问题