我正在尝试float: left
一些表格,但遇到了一个大问题,outlook 不支持浮动。好吧,然后我尝试使用表格对齐等,但没有运气。这些表格只是显示在彼此下方,而不是彼此并排。对此有什么可以做的吗?
PS:它可以在其他设备上正常工作,它只有 Outlook,我不能给每个表一个 td,因为它会破坏其他一些东西。
标记:
<table class="products">
<tr>
<td align="left" class="test">
<!-- Product 1 -->
<table align="center">
<tr>
<td class="product">
<a href="#">
<img src="#"/>
</a>
</td>
</tr>
</table>
<!-- Product 2 -->
<table align="center">
<tr>
<td class="product">
<a href="#">
<img src="#"/>
</a>
</td>
</tr>
</table>
<!-- Product 3 -->
<table align="center">
<tr>
<td class="product">
<a href="#">
<img src="#"/>
</a>
</td>
</tr>
</table>
<span class="clear"></span>
</td>
</tr>
</table>