# House our page within a Bootstrap Container Fluid Div

说明：

```
现在让我们确保页面里所有的内容都是响应式的。

让我们将 h3 元素放置于一个class属性为 container-fluid 的 div 元素中。

你的 div 元素应该有 class container-fluid。
确保你的每一个 div 元素都有一个闭合标签。
将你的 h3 元素嵌入到一个 div 元素中。
```

原始代码：

```
<h3 class="text-primary text-center">jQuery Playground</h3>
```

调试代码：

```
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
</div>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://iexam.gitbook.io/fcc/ji-chu/house-our-page-within-a-bootstrap-container-fluid-div.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
