我的电子邮件中有一个标题,右侧有一个徽标,左侧有一些链接(都在一行上)。工作正常,但在移动设备上查看时,左侧的链接溢出到两行。
理想情况下,我希望移动版本在顶行显示徽标,并在其下方显示如下链接:
桌面:
Logo Link 1 Link 2 Link 3
移动的:
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>