I recently sourced code directly from the Bootstrap documentation (see below), but I'm encountering an issue where my "success" badge appears as white text on a white background. The text is there, as I can highlight it, but it's not displaying correctly.
Here is the code snippet from Bootstrap:
<span class="badge badge-success">Success</span>
This is how I implemented it in my HTML:
<h5 class="card-title mb-2"><%= title %> <span class="badge badge-success">Success</span>
</h5>
Does anyone have any insight into why this is not functioning properly?