InterviewSolution
Saved Bookmarks
| 1. |
What are the two types of spinners that you can create using Bootstrap? |
|
Answer» 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> |
|