Bootstrap Question:

Download Job Interview Questions and Answers PDF

Explain what is column offset in bootstrap?

Bootstrap Interview Question
Bootstrap Interview Question

Answer:

Column offset in bootstrap provides a more flexible approach for creating layouts. Use class .offset* to shift column right side of the screen. Here * represents number of columns to be shifted. E.g. If there is a class .offser4 on a div then it will shift 4 column from left side towards the right side of the screen.

Example
<div class="row">
<div>...</div>
<div class="offset3">
...
</div>
</div>

Download Bootstrap Interview Questions And Answers PDF

Previous QuestionNext Question
What is panel in Bootstrap?Tell me what are the responsive design patterns?