I am trying to create this effect by using HTML in UIWebView control of iOS. The goal is to create the effect of progress bar on the listing. So far I tried this but as you see, by adding a padding on diV makes everything messed up. How can I achieve similar effect? I have no issue of using table but seems that would be more difficult.
Thanks
In the code you supplied you have this div:
Just add “top: 0px;” to it so that it becomes
And it will look correct.
Edit: And then give the LI elements
position: relativeto make it work with multiple elements. See http://jsfiddle.net/tFn78/9Another version which is a bit cleaner: http://jsfiddle.net/v7zNn/ and adjusts to variable height of the title.