Containers in Bootstrap with examples
In bootstrap, the container is used to set the content’s margin. It contains row elements and the row elements are containers of columns. This is known as the grid system.
There are two container classes in bootstrap:
- .container
- .container-fluid
Let’s look at each of the above two classes in detail with examples:
.container: The .container class provides a responsive fixed width container.
In the below example, the div with class “container” will have a fixed left and right margin and will not take the complete width of its parent or the viewport.
HTML
<!-- Bootstrap container class --> <!DOCTYPE html> < html > < head > < title >Bootstrap Container Example</ title > <!-- Add Bootstrap Links --> < link rel = "stylesheet" href = < script src = </ script > < script src = </ script > </ head > < body > <!-- Since we are using the class container, the below div will not take complete width of its parent. --> < div class = "container" style = "background: green;" > < h1 >GeeksforGeeks</ h1 > < p >A computer science portal for geeks.</ p > </ div > </ body > </ html > |
Output:
.container-fluid: The .container-fluid class provides a full-width container which spans the entire width of the viewport.
In the below example, the div with class “container-fluid” will take up the complete width of the viewport and will expand or shrink whenever the viewport is resized.
HTML
<!-- Bootstrap container-fluid class --> <!DOCTYPE html> < html > < head > < title >Bootstrap Container Example</ title > <!-- Add Bootstrap Links --> < link rel = "stylesheet" href = < script src = </ script > < script src = </ script > </ head > < body > <!-- Since we are using the class container-fluid, the below div will expand whenever the viewport is resized. --> < div class = "container-fluid" style = "background: green;" > < h1 >GeeksforGeeks</ h1 > < p >A computer science portal for geeks.</ p > </ div > </ body > </ html > |
Output:
Supported Browser:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari