Bootstrap Question:

Do you know what is Bootstrap Container?

Bootstrap Interview Question
Bootstrap Interview Question

Answer:

Bootstrap container is a class which is useful and creates a centered area within the page where our site content can be put within. The advantage of the bootstrap .container is that it is responsive and will place all our other HTML code.


Previous QuestionNext Question
Do you know what pagination in bootstrap is and how they are classified?Now please consider the HTML code snippet below. What will the output be, and why?

<div class="progress">
<div class="progress-bar progress-bar-success" style="width: 65%">
<span class="sr-only">65% sucesfuly completed</span>
</div>
<div class="progress-bar progress-bar-warning" style="width: 20%">
<span class="sr-only">20% completed with warnings</span>
</div>
<div class="progress-bar progress-bar-danger" style="width: 15%">
<span class="sr-only">15% did not complete</span>
</div>
</div>