I am currently creating a Custom ProgressBar using several Divs. The width of the "fill" div is handled by javascript in the backend.
The problem is that when the fill div has a width of 0px, the border is still visible.
<div id="SHyxPcLY" style="opacity: 1; visibility: visible;" class="progressbar JLUI_ProgressBar">
<div class="fill" style="width: 80px;"> </div>
<div class="track" style="width: 135px;"> </div>
</div>
<br/>
<br/>
<div id="SHyxPcLa" style="opacity: 1; visibility: visible;" class="progressbar JLUI_ProgressBar">
<div class="fill" style="width: 0px;"> </div>
<div class="track" style="width: 135px;"> </div>
</div>
I am looking for a CSS only solution. I do not have access to the javascript backend as it is handled by Xojo WebApps.