I'm attempting to add an icon overlay on a progress bar within Bootstrap 4 alpha.
<progress class="progress progress-primary" value="100" max="100">
<i class="fa fa-check-circle-o"></i>
</progress>
The desired outcome should resemble the following (approximately):
https://i.sstatic.net/t3wmi.png
However, the actual result appears like this:
https://i.sstatic.net/nRTgk.png
Despite trying various combinations of appearance:initial;
and !important
declarations, I can't seem to resolve the issue.
What key detail am I overlooking that is causing the text within the <progress>
element to remain invisible?