【发布时间】:2013-07-14 11:51:25
【问题描述】:
我正在尝试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>
【问题讨论】:
标签: html css outlook html-table html-email