vote up 0 vote down star

I have a tree of folders and I want to add a progress bar next to the folder name which is also an anchor. The progress bar div section is the jQuery UI progress bar div.

The pblabel element should seat on top of the progress bar. The bar element is the progress bar itself with a variable width.

<ul>
  <li>
    <a href="" style="display: inline;">test</a>
    <div id="progressbar" style="display: inline; height: 2em; background: white;">
      <div id="pblabel" style="position: absolute">progress</div>
      <div id="bar" style="display: inline; background: blue; width: 30%; height: 100%;></div>
    </div>
  </li>
</ul>

I can see the anchor element fine with the pblabel element next to it. I don't see the blue bar element or the white background of the progressbar element.

flag

If it's just a matter of CSS you might be better off asking this on doctype. Either way, could we see a screenshot or a link to a live demo? – Bears will eat you Sep 29 at 13:38

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.