I've hit a roadblock while trying to find a solution for this issue.
There must be an easy fix that I'm overlooking...
The problem arises when viewing the table with flags on a small screen (on mobile) - the image on the left seems to get slightly taller by 2 or 3 pixels because the other images are squashing against it
https://i.sstatic.net/6hJeX.png
All the images have the same dimensions - is there a way to prevent this squashing effect and maintain the image height?
This is the simple HTML code I am using (no css applied):
<body>
<table>
<tbody>
<tr>
<td><img src="flag.png" style="vertical-align:middle;">USA</td>
<td><img src="flag.png" style="vertical-align:middle;">UK</td>
<td><img src="flag.png" style="vertical-align:middle;">Canada</td>
<td><img src="flag.png" style="vertical-align:middle;">Germany</td>
</tr>
<tr>
<td><img src="flag.png" style="vertical-align:middle;">Australia</td>
<td><img src="flag.png" style="vertical-align:middle;">France</td>
<td><img src="flag.png" style="vertical-align:middle;">India</td>
<td><img src="flag.png" style="vertical-align:middle;">UAE</td>
</tr>
</tbody>
</table>
</body>
Any suggestions for a straightforward solution?
The image heights are consistent at 100px
Appreciate any guidance offered