Reputation: 49
I'm building out a frontend site and I cannot figure out why my anchor tag is not being displayed in IE 11. I'm not doing anything fancy to it, it's just not visible.
The site is live at etcnow.org
Any help is greatly appreciated!
<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>
Upvotes: 1
Views: 85
Reputation: 1247
IE cant handle the CSS variable for the background-color. Use a fallback such as background-color: green
and browsers that dont support CSS variables will use the fallback instead.
.btn {
background-color: green;
background-color: var(--green, green);
}
Upvotes: 1