InterviewSolution
Saved Bookmarks
| 1. |
Which of the following creates yellow progress bar?(a) .progress-bar-success(b) .progress-bar-warning(c) .progress-bar-info(d) .progress-bar-dangerThis question was posed to me in examination.This interesting question is from Responsive Overview in portion Advance HTML of HTML |
|
Answer» CORRECT choice is (b) .PROGRESS-bar-warning Explanation: .progress-bar-warning will create a yellow progress bar INDICATING warning, .progress-bar-success will SHOW green progress bar indicating success, .progress-bar-danger will show red progress bar indicating danger, .progress-bar-info will show light-blue progress bar indicating information. |
|