xxxxxxxxxx
1
<div class="container my-4">
2
<p>
3
<strong>You can easily adjust the width of the bootstrap grid by setting a <code>max-width</code> of the
4
<code>.container</code>. See the examples below</strong>
5
</p>
6
7
<p>
8
Detailed documentation and more examples you can find in our
9
<a href="https://mdbootstrap.com/docs/standard/layout/containers/" target="_blank"><strong>Bootstrap Containers
10
Docs</strong></a>
11
</p>
12
13
<hr />
14
15
<p><strong>Basic example</strong></p>
16
17
<p>Add this simple CSS to your project:</p>
18
19
<pre class="code-toolbar bg-light"><code class="language-markup">
20
.container-example {
21
/* Set your width */
22
max-width: 800px;
23
}
24
</code></pre>
25
26
<p>It will set a maximum width to the container so it will not stretch too much on bigger screens, but it sill will be responsive on smaller screens and mobile.</p>
27
28
<div class="border p-5">
29
<!-- Copy this code to have a working example -->
30
<div class="container container-example bg-danger py-5 text-white">
31
Modified container with a max-width = 800px
32
</div>
33
<br>
34
<div class="container bg-primary py-5 text-white">
35
Regular container
36
</div>
37
<!--/ Copy this code to have a working example -->
38
</div>
39
</div>
xxxxxxxxxx
1
.container-example {
2
/* Set your width */
3
max-width: 800px;
4
}
1
1
Console errors: 0