0
我的電子郵件中有一個標題,右側有一個徽標,左側有一些鏈接(全部位於一行)。工作正常,但在移動設備上查看時,左側的鏈接會溢出兩行。Zurb Ink移動設備上的電子郵件標頭
我非常喜歡有移動版本顯示在頂部行標誌和它下面的鏈接如下所示:
桌面:
Logo Link 1 Link 2 Link 3
MOBILE:
Logo
Link 1 Link 2 Link 3
我將如何實現這一目標?
我的代碼:
<table class="row header">
<tr>
<td class="center" align="center">
<center>
<table class="container" style="border-bottom: 1px solid;border-bottom-color:#bdc3c7">
<tr>
<td class="wrapper last">
<table class="twelve columns">
<tr>
<td class="four sub-columns full-size">
<img class="left" style="float:left;width:180px !important;" src="#" width="180px">
</td>
<td class="eight sub-columns last full-size" style="text-align:right; vertical-align:middle;">
<a href="#">Link1</span></a> <a href="#"><span style="color:black;font-weight:100">Link2</span></a> <a href="#"><span style="color:black;font-weight:100">Link3</span></a>
</td>
<td class="expander"></td>
</tr>
</table>
</td>
</tr>
</table>
</center>
</td>
</tr>
</table>