Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>EDIT: Made some changes according to your comments. Try:</p> <pre><code>&lt;h1 id="progress"&gt; &lt;i&gt;&lt;/i&gt;Recent Posts &lt;/h1&gt;​ #progress { display: block; max-width: 200px; min-width: 150px; position: relative; margin: 50px auto 0; padding: 0 3px; border-bottom: 10px solid #ECECEC; font: bold 26px 'Dancing Script', cursive; } #progress i { display: block; position: absolute; width: .8em; height: 10px; left: 0; bottom: -10px; background-color: #4287F4; }​ </code></pre> <p><a href="http://jsfiddle.net/userdude/z45QJ/4/" rel="nofollow">http://jsfiddle.net/userdude/z45QJ/4/</a></p> <p>I'm not a big fan of the <code>position</code> manipulation, but all browsers should support and display this nearly identically, the only possible problem being the font's displa may be slightly differently in different browsers. However, IE7-9 should interpret everything else just fine.</p> <hr> <p>Too bad the whole wuuurld isn't on WebKit:</p> <pre><code>&lt;div id="progress"&gt;&lt;/div&gt;​ #progress { width: 300px; height: 10px; border: none; background-color: #ECECEC; border-left: solid #4287F4; box-shadow:inset 2px 0 white; -webkit-animation: slide 10s linear infinite; } @-webkit-keyframes slide { from { border-left-width: 0; width: 300px; } to { border-left-width: 300px; width: 0; } }​ </code></pre> <p><a href="http://jsfiddle.net/userdude/z45QJ/1" rel="nofollow">http://jsfiddle.net/userdude/z45QJ/1</a></p> <p>It could be adjusted to go both ways. However, it only works on WebKit browsers (Chrome, Safari [?]). If that's ok, let me know and I'll add the return trip.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload