HTML Table align images and text
html
Solution
You just have to add `style="vertical-align:top"` to `td`
Or `vertical-align:middle` if you'd like to position the text in the middle of the row
Problem
In a sample article I added a html table widh 2 columns, left column for images and right column for image descriptions. The problem is, the text description on the right column is below the images, it´s like the images are forcing the text to break into another line. this is a sample code as I used: ``` <table> <tr> <td>Image.jpg</td> <td>Image.jpg description</td> </tr> <tr> <td>Image2.jpg</td> <td>Image2.jpg description</td> </tr> </table> ``` You can see the problem here On this page