実際には、テキストインデントを使用して進行状況の途中にテキストを配置する進行状況バーがあります。
Chrome と IE ではすべて正常に動作しますが、Firefox では動作しません。(うん、信じられない)
Chrome と Firefox の違いを確認します。
アニメ版
HTML
<div class="container">
<div class="bars bar1">sametext</div>
<div class="bars bar2">sametext</div>
</div>
CSS
.container{
border:1px solid #09c;
height: 20px;
width: 100%;
position: relative;
}
.container .bars{
text-indent: 45%;
position: absolute;
top:0;
font-family: arial;
color: #09c;
}
.container .bar2{
background-color: #09c;
width: 50%;
color: #fff;
overflow: hidden;
}
bar2 の幅と text-indent は、プログレス バーを塗りつぶしたときに期待される結果を表示するための動的変数です。