Explain what is column offset in bootstrap?

Submitted by: Administrator
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>
Submitted by:

Read Online Bootstrap Job Interview Questions And Answers