I am looking to center images within a table element and have the text wrap to a new line if it overflows.
Is there a way in HTML Emailers to position images at the center of a table with text below them that are placed side by side?
My requirement is to have an image followed by text. If the text exceeds the available space, it should continue on a new line.
I am restricted to using inline CSS only and cannot utilize other tags such as div. Also, I am unable to use positioning properties due to creating HTML emailers, so sticking to the table tag is essential.
<table style="margin: 0 auto; border: thin green solid;" width="600">
<tr>
<td style="margin:0; padding: 0;" align="center">
<img src="http://www.hubilo.com/eventApp/ws//images/speaker/profile/thumb/2712_1455949782.jpeg" width="110" height="110" style="display: block; margin: 0 auto;">
<p>Some Text</p>
</td>
<td style="margin:0; padding: 0;" align="center">
<img src="http://www.hubilo.com/eventApp/ws//images/speaker/profile/thumb/2712_1455949782.jpeg" width="110" height="110" style="display: block; margin: 0 auto;">
<p>Some Text</p>
</td>
<td style="margin:0; padding: 0;" align="center">
<img src="http://www.hubilo.com/eventApp/ws//images/speaker/profile/thumb/2712_1455949782.jpeg" width="110" height="110" style="display: block; margin: 0 auto;">
<p>Some Text Some TextSome TextSome TextSome TextSome Text</p>
</td>
<td style="margin:0; padding: 0;" align="center">
<img src="http://www.hubilo.com/eventApp/ws//images/speaker/profile/thumb/2712_1455949782.jpeg" width="110" height="110" style="display: block; margin: 0 auto;">
<p>Some Text</p>
</td>
</tr>
</table>
As per the given code snippet, my goal is to have any overflow text appear on the next line while ensuring images remain centered within the table.