Changer d'orientation à la verticale, les lignes de la table HTML + CSS

J'ai cette table:

<table id="tabla">
    <tbody>
        <tr><th>row1</th><td>aaaa</td></tr>
        <tr><th>row2</th><td>bbbb</td></tr>
        <tr><th>row3</th><td>cccc</td></tr>
        <figure><img src="image.png"/></figure></td></tr>
    </tbody>
</table>

Cette organise l'information en ligne... Mais je veux le faire pivoter et de les afficher dans les colonnes... j'espère que c'est assez d'explication pour ce que je veux:

Comment j'ai maintenant:

row1: aaaa
row2: bbbb
row3: cccc imag

Façon dont je le veux:

 row1 | row2 | row3
 aaaa | bbbb | cccc
             | imag  

Comment puis-je le faire avec du CSS?

InformationsquelleAutor Sergio | 2017-01-04