Which of the following bootstrap styles can be used to create an Animated progress bar?

Questions & AnswersCategory: Programming LanguageWhich of the following bootstrap styles can be used to create an Animated progress bar?
Adam asked 3 years ago

Which of the following bootstrap styles can be used to create an Animated progress bar?
a. .progress-active
b. .active
c. .progress-striped.
d. None of the above.

1 Answers
Lokesh Kumar Staff answered 3 years ago

c. .progress-striped
 
Explanation: In order to make an animated progress bar in Bootstrap, a user has to insert a <div> with a class of .progress and .progress-striped. Also add class .active to .progress-striped. Next, inside the above <div>, add an empty <div> with a class of .progress-bar. Therefore, the correct option is (b) .active class.