The concept of bootstrap grid helps to layout content on webpage when using bootstrap. It’s very helpful when creating responsive layouts where division of space might change and depends on the screen.
To note it only works in a container clsss and then use row class. Further more the column class starts with .col .
To demonstrate how it would look:
<div class= “col-6 bg-success”> I am 6 units</div>.
To note again when it comes to the row it would be div class=“row>. Also to make it equal class columns would be done as div class col. It is also possible to nest container within containers.
To summarise alot of things to keep in mind and more practise to grasp it better.
steps are container,row and col size.
Comments