Check out
I'm facing an issue with the alignment of the four small images on the right side. It looks fine in Firefox and Chrome, but in IE9 they are spreading out...
Here is a snippet of the CSS:
.fixedtable{
width: 90px;
overflow: hidden;
text-align: right;
vertical-align: top;
}
Any guidance on how to fix this would be greatly appreciated.
Regards, Rich
Below is the HTML code (moved from comments):
<tr>
<td class="fixedtable">
<img src="images/service-now.jpg" alt="aga service" width="90" height="150" align="right" />
</td>
<td class="fixedtable">
<img src="images/aga-cosmetics.jpg" alt="aga cosmetics" width="90" height="150" align="right" />
</td>
<td class="fixedtable">
<img src="images/aga-installations.jpg" alt="aga installations" width="90" height="150" align="right" />
</td>
<td class="fixedtable" >
<img src="images/regions-covered.jpg" alt="aga south west" width="90" height="150" align="right" />
</td>
</tr>