私は縦棒のように種類をパーセントで変えることができますが、これを使用するには横型のものを使用することに成功しました:CSS Progress Bar今はそれをエミュレートしたいと思っています。縦向きのCSS/HTML5プログレスバー
Is there a way that I can do this。
これは、垂直バーのコードです:これは、何が必要である場合、私は知らない
<div class="score">
<div id="test" class="score-completed" style="height:80;">
<div> </div>
</div>
</div>
.score {
width:34px;
height:141px;
background: url(/assets/images/accordion/score.png) no-repeat 0 0px;
}
.score-completed {
width:26px;
margin-left: -1px;
background: url(/assets/images/accordion/score.png) no-repeat 1px 0;
}
.score-completed div {
float: right;
height: 50%;
width:26px;
margin:99px 1px 0 0;
background: url(/assets/images/accordion/score.png) no-repeat 100% 100%;
display: inline; /* IE 6 double float bug */
}
あなたの2番目のリンクが動作していません – oezi
ありがとうございました – Solidariti