+8  A: 

I imagine the word is actually there twice, once in each colour, but the white version is clipped by the progress bar.

fd
using the left div to "show through" part of the white text huh? that's smart.
動靜能量
+1 For this smart hack. It probably is done this way. Great idea man!
Robert Koritnik
+2  A: 

Sample:

<div style="width:400px; height:1.1em; position:relative;">
    <div style="position:absolute; text-align:center; width:400px; height:100%; background-color:#eee;">49 %</div>
    <div style="position:absolute; overflow:hidden; width:195px; height:100%; background-color:#347;">
        <div style="width:400px; text-align: center; color: #ace;">49 %</div>
    </div>
</div>
0scar