What is Bootstrap?

What is Bootstrap?
The bootstrap is a “grid system concept”. which is made up of three things
- A container
- Rows
- Columns
Basic rule:- It is allows you to create up to twelve columns and unlimited rows.
container
It is grip system needs a container to hold rows and columns. A container is a simple <div> element with a class of container.
<div class= “container”>
………….
</div>
There are two type of container
- fixed container
- fluid container
fixed container
It is use container for a responsive fixed container.
<div class= “container”>
…….
</div>
fluid container
It is use for full with container spanning the entire width of you viewport.
<div class=”container-fluid”>
</div>
Row
It this mutiple rows can be added.
<div class=”container”>
<div class=”row”>
</div>
</div>
Columns
The columns has four class
<div class =”col-xs-12″> (xs for phones)
<div class =”col-sm-12″> (sm for tabets)
<div class =”col-md-12″> (md for destops)
<div class =”col-lg-12″> (sm for larger destops)
Conclusion
if you like this article so, please share it with your friends. In the article What is Bootstrap? we are trying to tell all the information about this. if you have any doubts. you can comment on this page.
In this article What is Bootstrap? you learn something about this. so please share on facebook , twitter , Instagram etc.