i created my own progressbar and got some problems
i have a complete .box with width=90%
in that box i have the .progress div with width= 100
in the .progress div i got .left-free div 10%, .progressbar 80%, .right-free 100%
in the .progressbar i got 4 divs .grey 30%, .violet 30%, .brown 30%, .blank 0%
the problem is don't know why .grey, .violet, .brown aren't the same size!
edit: (the .blank div is just a spacer.. everything is fine with that.)
i don't use margin or padding or any borders. the border around the .progressbar was realized with box-shadow.
my html code:
<div id="box">
<div id="progress">
<div class="left-free">10% free</div>
<div class="progressbar">
<div class="grey" style="width:30%">30%</div>
<div class="violet" style="width:30%">30%</div>
<div class="brown" style="width:30%">30%</div>
<div class="blank" style="width:0%">0%</div>
</div>
<div class="right-free">10% free</div>
</div>
</div>
my css code:
body
{
width:100%;
background-color:#eee;
padding:0;
margin:0 auto;
}
#box
{
width:90%;
padding:0;
margin:2% auto;
background-color:#eee;
}
#progress
{
width:100%;
padding:0;
margin-bottom:10%;
}
.left-free
{
width:10%;
float:left;
box-shadow: inset -1px 0px 0px rgba(0, 0, 0, 1); /* right */
}
.progressbar
{
position:relative;
width:80%;
float:left;
background-color:#ffffff;
box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 1), /* top */
inset 0px -1px 0px rgba(0, 0, 0, 1); /* bottom */
}
.grey {background-color:grey;}
.violet {background-color:violet;}
.brown {background-color:brown;}
.blank {background-color:#ffffff;}
.grey,
.violet,
.brown,
.blank
{
height:100px;
float:left;
margin-top:1px;
}
.left-free,
.progressbar,
.right-free
{
height:102px;
}
.right-free
{
width:10%;
float:left;
box-shadow: inset 1px 0px 0px rgba(0, 0, 0, 1); /* border left */
text-align:right;
}
i created a screenshot and put a green bar with the same width over all 3 boxes! on the .violet and the .brown div i have an spacer on the right end (hope you can see it on image)

here is a crop for a better view

you can see the running code on jsfiddle
second example: jsfiddle 2
any ideas why the boxes don't have the same size?
edit: i uploaded the html to pastebin