我想在点击图像后向下滚动section_one
。
我的代码是:
<a href="#section_one">
<img src="img.png" alt="">
</a>
<tr style="margin-bottom: 40px;" id="section_one">
<td>
<table class="step1-section">
<tr style="margin-bottom: 24px;">
<td>
<p class="heading-2">Some text</p>
</td>
</tr>
</table>
</td>
</tr>
字符串
Gmail将我的href改为href="#m_9152231230583106464_section_one"
但它不起作用。好心地帮助找到一个解决方案。TIA。
2条答案
按热度按时间mbskvtky1#
必须有
<a>
标签链接在电子邮件中滚动。第一个<a>
有href="#section_one"
。点击此页面后将滚动和第二个<a>
有name="section_one"
滚动将土地。字符串
3pmvbmvn2#
考虑使用“div”元素而不是“tr”元素作为您的部分,因为“div”更常用于此目的
字符串