最赞回答 / KingdomLiu
这个STYLE.CSS是从bootstrap.css中摘取出来的,用来让你感受bootstrap设计思想用的,前一小节课程中讲到了。满意的话请采纳,手打不易。
2017-05-22
已采纳回答 / 套子里的海怪
第六行 链接地址要改改,自己上网找找,还有就是不要用//,这个服务器上才行<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
2017-05-18
已采纳回答 / _晴不知所起一往而深_
直接加上style="width:80% ;background-color:pink;"就可以啦栗子:<div class="progress"> <div class="progress-bar" style="width:80% ;background-color:pink;" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"> <span class=...
2017-05-15
已采纳回答 / 慕粉4086570
Bootstrap在页面宽度大于等于768px的情况下,control-label的文本采用右对齐方式,而之所以你去掉之后其位置也没有变化是因为你的label并未设置宽度,你可以在Bootstrap的css文件中找到.form-horizontal .control-label在其中加入width=100%文本就会右对齐了。而你说的颜色问题是因为这个颜色与.has-success .control-label挂钩,缺一不可。如图:<...图片...>
2017-05-13