在舊錶的IOS版本的HTML電子郵件上遇到一些小問題,這些表不會緊挨着對方。我爲客戶創建了一個響應式電子郵件佈局,並且需要使用align =「left」來浮動表格。 (示例代碼如下)HTML/IOS <6表對齊
我已經在每個客戶端上測試過我能想到的,它只是帶有此問題的舊IOS版本。
示例代碼:(此心不是實際的代碼我使用,但同樣princible)
<table cellspacing="0" cellpadding="0" width="600" border="0" class="full-width">
<tr>
<td width="600" class="full-width">
<table cellspacing="0" cellpadding="0" border="0" width="200" align="left">
<tr>
<td width="200">Some Text Here 1</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" border="0" width="200" align="left">
<tr>
<td width="200">Some Text Here 2</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" border="0" width="200" align="left">
<tr>
<td width="200">Some Text Here 3</td>
</tr>
</table>
</td>
</tr>
</table>
這裏是什麼與IOS 5(錯誤)和IOS 6(正確)發生的圖像:
Image of IOS 5 and 6 respectively with table included
任何援助將不勝感激。如果您需要更多信息,請告訴我。
你的響應式CSS是什麼? – samanthasquared