IE 中不显示锚标记

Anchor tag not showing up in IE

我正在构建一个前端站点,我无法弄清楚为什么我的锚标记没有显示在 IE 11 中。我没有对它做任何花哨的事情,它只是不可见。

该站点在 etcnow.org

上线

非常感谢任何帮助!

<section class="curriculum centered-block">
    <h3>Curriculum</h3>
    <p>
        ETC’s integrative and alternative education model is designed to
        eliminate the stigma of utilizing mental health services. Its seamless
        clinical learning model fosters emotional self-efficacy while building
        essential life skills.
    </p>
    <a class="btn grow" href="/curriculum">Learn More</a>
</section>

IE 无法处理背景颜色的 CSS 变量。使用诸如 background-color: green 之类的回退,不支持 CSS 变量的浏览器将改用回退。

.btn {
    background-color: green;
    background-color: var(--green, green);
}