Update the example to reflect the prefix (#22241)

This commit is contained in:
zaccodes
2018-11-18 16:29:28 +02:00
committed by Tom
parent c7499729e2
commit 660c981515

View File

@ -42,7 +42,7 @@ CSS frameworks like [Bootstrap](https://www.getbootstrap.com/), [Material Design
In this example, `col-md-9` and `col-sm-6` set the width of the `<div>` tag based on whether the screen is small or medium.
```html
<div class="col-12 col-md-6"></div>
<div class="col-12 col-md-9 col-sm-6"></div>
```
The Bootstrap framework divides a row into twelve columns. In the above example, the `<div>` will spread across either nine or six of them. The grid system, pictured below, is fundamental to how Bootstrap eases responsive design.