无法在手机中将新闻稿的文本居中
Can't Center Text For Newsletter In Mobile
处理电子邮件群发和我的生活,我无法让文本在移动视图中居中。 URL 是:http://strictpixel.com/clients/relevant/fbc/email/
我指的是顶部导航,位于徽标下方。在手机上,它向左滑动,我不知道为什么。
我知道这很简单,但我已经费了一个小时了。
谢谢!
是的,这确实是一团糟,您应该考虑重构。你不可能需要所有那些嵌套的 tables.
但是,如果您打算保持这种方式,问题可能源于您的 HTML 无效。首先,<center>
标签已经失效,不应再使用。其次,你打破了你的 table 结构的流程,从我在下面插入的评论开始:
<p class="template-label">469-952-6404</p></td>
<td class="expander"></td>
</tr>
</table>
</td>
<!-- You can't start the new table below here without first either
opening a new <td> or closing the <tr> and <table> that is open!! -->
<table class="container">
<tr>
<td class="wrapper">
<table class="twelve columns" style="background-color:#f1f5f8;vertical-align:center;">
...
我的最佳猜测是您错过了在 table
开始之前打开下一个 <td>
标签。
使用在线 HTML 验证器帮助您找到 table 结构损坏的地方。 http://www.freeformatter.com/html-validator.html 之类的东西可能会有用。
处理电子邮件群发和我的生活,我无法让文本在移动视图中居中。 URL 是:http://strictpixel.com/clients/relevant/fbc/email/
我指的是顶部导航,位于徽标下方。在手机上,它向左滑动,我不知道为什么。
我知道这很简单,但我已经费了一个小时了。
谢谢!
是的,这确实是一团糟,您应该考虑重构。你不可能需要所有那些嵌套的 tables.
但是,如果您打算保持这种方式,问题可能源于您的 HTML 无效。首先,<center>
标签已经失效,不应再使用。其次,你打破了你的 table 结构的流程,从我在下面插入的评论开始:
<p class="template-label">469-952-6404</p></td>
<td class="expander"></td>
</tr>
</table>
</td>
<!-- You can't start the new table below here without first either
opening a new <td> or closing the <tr> and <table> that is open!! -->
<table class="container">
<tr>
<td class="wrapper">
<table class="twelve columns" style="background-color:#f1f5f8;vertical-align:center;">
...
我的最佳猜测是您错过了在 table
开始之前打开下一个 <td>
标签。
使用在线 HTML 验证器帮助您找到 table 结构损坏的地方。 http://www.freeformatter.com/html-validator.html 之类的东西可能会有用。