是否有任何名为“barone'在引导程序?

时间:2015-01-05 12:44:59

标签: css twitter-bootstrap class

当我学习Bootstrap时,我在教程中看到了一个“barone”类,但他们没有解释该类的用法。这是网站 http://www.w3resource.com/twitter-bootstrap/tutorial.php

这个名字中的Bootstrap中是否有任何类?

由于

1 个答案:

答案 0 :(得分:0)

据我所知,类用于将元素组合在一起。正如您在以下示例中看到的那样:



p.exampleID3 { background-color: #013370; color: white;} 

<p class='exampleID3'>These paragraphs all have the same styling applied to them and we used classes because we wanted to reuse our styling!</p>
<p class='exampleID3'>These paragraphs all have the same styling applied to them and we used classes because we wanted to reuse our styling!</p>
<p class='exampleID3'>These paragraphs all have the same styling applied to them and we used classes because we wanted to reuse our styling!</p>
&#13;
&#13;
&#13;

该类是exampleID3,存在于css文件中。在你的情况下&#34;行barone&#34;应该在css文件中的某个位置,但它没有在教程中显示,你也不知道它包含什么。