Files

19 lines
292 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Create a Bootstrap Row
---
# Create a Bootstrap Row
2018-10-12 15:37:13 -04:00
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
2018-10-12 15:37:13 -04:00
```html
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
<div class="row"></div>
</div>
```
2018-10-12 15:37:13 -04:00
</details>