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
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/