Suppose there is a table of this kind:
<table> <tr><td><img src=""></td><td>some text</td></tr> <tr><td><img src=""></td><td>some text</td></tr> <tr><td><img src=""></td><td>some text</td></tr> </table>
The columns of the table are 50% each; the row heights are the same. The pictures in the first column are of different sizes, but all should be aligned to the center of the first cell. The text in the right column should be aligned right and centered vertically.
How to implement it in tabular layout, - I know. But how to implement it using only div and css? (Example.)