How can you order columns in Bootstrap?
Answer / Ravinder Rawat
In Bootstrap, you can order columns using the `order-*` classes. For example, to make a column appear first, you would use `order-first`, and for last use `order-last`. To sort columns, you can use `order-*` numbers. Lower values go first, higher values go later.nn```htmln<div class="row">n <div class="col order-2">Column 2</div>n <div class="col order-1">Column 1</div>n</div>
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain what is Bootstrap well?
Why to choose bootstrap for building the websites?
What is data toggle in bootstrap and how we can use it?
Tell me which class make a set of buttons appear vertically stacked rather than horizontally?
Tell me what is bootstrap grid system?
What dependencies does bootstrap require to work properly?
What is bootstrap?
Tell me what the following code does, and where they are useful:<a href="#">home <span class="badge">36</span></a>
Explain the two codes that are used for code display in bootstrap?
What are bootstrap alerts?
How to give a style to images in bootstrap?
How can you create nav elements in bootstrap?