on the twitter bootstrap there are examples of the features and the examples are contained in DIVs with the class ‘bs-docs-example’.
every such DIV has the string ‘Example’ written in the upper left corner. i want to know where is that string coming from and if i can use/customize it?
on the twitter bootstrap there are examples of the features and the examples are
Share
If you take a look at the Github for Bootstrap you’ll see that
.bs-docs-examplehascontent: "Example"set for::after(for explanation on how to manage content with CSS3 see here).Basically, .bs-docs-example has this style attached to it:
If you modify
contentmember you’ll modify the text.