Bootstrap 3.0如何使进度条更薄?我在想,YouTube喜欢/不喜欢米的样子(蓝色的条).我已经尝试搜索任何CSS技巧,但找不到任何东西.
@H_502_2@
解决方法
像这样简单:
.progress {height: 10px;}
见:Reduce the height of progress bar
额外的,如果要在进度条中显示文本:
.progress {height: 20px;} // we increased it so the text is visible or change font size .progress .sr-only { position: relative; }
见:Show text inside progress bar
@H_502_2@ @H_502_2@