Bootstrap assigns a link style to a non element

Is there a way to assign a bootstrap layout style to a non-element?

I mean something like this:

<span class="link">Some text</span> 

I assume that if this is not provided by the framework, this can only be achieved manually by modifying the css.

+6
source share
1 answer

You can use the btn btn-link classes. These are Bootstrap link styles that are commonly found in anchor tags or button tags, but if you use them in any other text, they will use these styles in your text. This may not give accurate results, so your CSS may need to be changed.

+2
source

All Articles