+1 vote
in Bootstrap by
What are the two types of spinners that you can create using Bootstrap?

1 Answer

0 votes
by
Use the .spinner-border class to make a spinner/loader.

<div class= "spinner-border" ></div>

If you want the spinner/loader to grow instead of "spin", use the .spinner-grow class.

<div class= "spinner-grow" ></div>
...