bootstrap中有没有叫'barone'的class?
Is there any class called 'barone' in bootstrap?
我在学习Bootstrap的时候,在教程中看到了一个class"barone",但是他们并没有解释那个class的用法。这是网站
http://www.w3resource.com/twitter-bootstrap/tutorial.php
这个名字里有Bootstrap中的class吗?
谢谢
据我所知,classes 用于将元素组合在一起。如您在以下示例中所见:
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>
class 是 exampleID3,存在于 css 文件中。在你的情况下 "row barone" 应该在 css 文件中的某个地方,但它没有在教程中显示并且你真的不知道它包含什么。
我在学习Bootstrap的时候,在教程中看到了一个class"barone",但是他们并没有解释那个class的用法。这是网站 http://www.w3resource.com/twitter-bootstrap/tutorial.php
这个名字里有Bootstrap中的class吗?
谢谢
据我所知,classes 用于将元素组合在一起。如您在以下示例中所见:
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>
class 是 exampleID3,存在于 css 文件中。在你的情况下 "row barone" 应该在 css 文件中的某个地方,但它没有在教程中显示并且你真的不知道它包含什么。