twitter-bootstrap-3 – 如何删除引导进度条下方的空格

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap-3 – 如何删除引导进度条下方的空格前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何删除或最小化进度条和字符串之间的差距:
<div class='progress'><div class='progress-bar' role='progressbar' aria-valuenow='60' aria-valuemin='0' aria-valuemax='100' style='width: 80%;'></div></div>
<!--Here will be a huge whitespace,and needs to be removed-->
remove white space above this line

这是一个小提琴:http://jsfiddle.net/1ts9b5m4/

提前致谢!

解决方法

使用style =“margin-bottom:0px;”
<div class='progress' style="margin-bottom:0px;"><div class='progress-bar' role='progressbar' aria-valuenow='60' aria-valuemin='0' aria-valuemax='100' style='width: 80%;'></div></div>
<!--Here will be a huge whitespace,and needs to be removed-->
remove white space above this line

猜你在找的Bootstrap相关文章