Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

38 lines
788 B
Markdown

---
title: Use Responsive Design with Bootstrap Fluid Containers
---
# Use Responsive Design with Bootstrap Fluid Containers
---
## Problem Explanation
Welcome to the Bootstrap challenges, the followingchallenge has you making the existing content children or sub-child of a new div which would be a bootstrap container
---
## Hints
### Hint 1
Wrap all HTML code into a single ``` <div></div> ```.
### Hint 2
Use the class of ``` container-fluid ```
---
## Solutions
Since you have to add all the HTML in the newly created div, the following is the solution:
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```html
<div class="container-fluid>
</div>
```
**NOTE:** IN the above solution, the ``` ... ``` represents the HTML which was already present.
</details>