Bootstrap Question:

Explain what is column offset in bootstrap?

Tweet Share WhatsApp

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 PDF Read All 128 Bootstrap Questions
Previous QuestionNext Question
What is panel in Bootstrap?Tell me what are the responsive design patterns?