I am struggling to display a Font Awesome icon on top of a Materialize CSS progress/determinate div. Unfortunately, the icon is not fully visible and part of it gets clipped or hidden. Despite trying various solutions, I have not been successful.
.progress .determinate {
overflow: visible;
z-index: 1;
}
.progress .determinate .fa {
position: absolute;
top: -5px;
font-size: 12px;
right: 0px;
visibility: visible;
z-index: 9;
}
...
The image below illustrates how the final result should appear. Even after hours of attempts, I have not been able to achieve this look.
https://i.sstatic.net/ej6LW.png
I have referenced some posts that I tried but none were successful in resolving the issue:
- First
- Second
- Third
I have attempted multiple approaches but have not been able to make it work. Any assistance would be greatly appreciated. Thank you in advance.