同時に複数の値を表示する進行状況バーがあります。例は次のようになります。
- 微調整する(のように
margin-top: -20px
) - ベンダー プレフィックスを使用する (など
display: -webkit-inline-box;
)
html:
<div id="progress">
<div id="progress-buffer"></div>
<div id="progress-time"></div>
</div>
CSS:
#progress {
background: #333;
height: 20px;
width: 300px;
}
#progress-buffer {
background: orange;
width: 50%;
height: 100%;
}
#progress-time {
background: green;
width: 25%;
height: 100%;
}