Convert TD columns into TR rows
        Posted  
        
            by TM
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by TM
        
        
        
        Published on 2010-04-28T15:08:55Z
        Indexed on 
            2010/04/28
            17:47 UTC
        
        
        Read the original article
        Hit count: 185
        
Hi,
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 to:
A 1
B 2
C 3
D 4
??
© Stack Overflow or respective owner