As a beginner in using bootstrap, I am creating my first simple website. However, I am facing an issue with the footer copyright section where the class "link-dark" is not taking effect.
<!-- Copyright -->
<div class="container-fluid bg-primary text-dark link-dark">
<div class="text-center p-3">
© 2021 Copyright:
<a href="https://foo.bar/">foo.bar</a>
</div>
</div>
<!-- Copyright -->
The classes
container-fluid bg-primary text-dark
are being applied successfully, but not the link-dark
.
I have referred to the documentation on this page, but I can't seem to figure out what's wrong as there are no limitations mentioned.
https://getbootstrap.com/docs/5.0/helpers/colored-links/
Can someone please help me identify what mistake I might be making?