我有一个进度条,它应该同时显示多个值,示例可能如下所示:
- 微调(如
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%;
}