Global
Guideline
Comprehensive Job Interviews
Home
Interview Questions
Online Quiz Tests
Blog
Contact Us
Close Menu
Copyright © 2005 - 2024. All Rights Reserved
Search
Home
Interviews
Web Development
Bootstrap
Bootstrap Question:
Do you know what is Bootstrap Container?
Tweet
Share
WhatsApp
Download PDF
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.
Download Bootstrap PDF
Read All 128 Bootstrap Questions
Previous Question
Next 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>