css 我们如何在点击按钮后向下滚动电子邮件

bz4sfanl  于 2024-01-09  发布在  其他
关注(0)|答案(2)|浏览(120)

我想在点击图像后向下滚动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。

mbskvtky

mbskvtky1#

必须有<a>标签链接在电子邮件中滚动。第一个<a>href="#section_one"。点击此页面后将滚动和第二个<a>name="section_one"滚动将土地。

<a href="#section_one">
        <img src="img.png" alt="">
    </a>

<tr  style="margin-bottom: 40px;">
    <td>
        <a href="#" name="section_one"></a>
        <table class="step1-section">
            <tr style="margin-bottom: 24px;">
                <td>
                    <p class="heading-2">Some text</p>
                </td>
            </tr>
        </table>
    </td>
</tr>

字符串

3pmvbmvn

3pmvbmvn2#

考虑使用“div”元素而不是“tr”元素作为您的部分,因为“div”更常用于此目的

<a href="#section_one">
    <img src="img.png" alt="">
</a>

<div style="margin-bottom: 40px;" id="section_one">
    <table class="step1-section">
        <tr style="margin-bottom: 24px;">
            <td>
                <p class="heading-2">Some text</p>
            </td>
        </tr>
    </table>
</div>

字符串

相关问题