Login
Remember
Register
Ask a Question
What are the two types of spinners that you can create using Bootstrap?
+1
vote
asked
Jan 20, 2023
in
Bootstrap
by
SakshiSharma
What are the two types of spinners that you can create using Bootstrap?
bootstrap
spinner
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 20, 2023
by
SakshiSharma
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>
...