twitter-bootstrap – Thinner Bootstrap进度条?

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – Thinner Bootstrap进度条?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Bootstrap 3.0如何使进度条更薄?我在想,YouTube喜欢/不喜欢米的样子(蓝色的条).我已经尝试搜索任何CSS技巧,但找不到任何东西.

解决方法

像这样简单:
.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

原文链接:https://www.f2er.com/bootstrap/234027.html

猜你在找的Bootstrap相关文章