现在,让我们从头开始练习我们的HTML, CSS 和 Bootstrap 技术。
我们将会搭建一个 jQuery playground,它也即将在我们接下来的 jQuery 课程中被投入使用。
首先,创建一个 h3 元素,并且包含文本内容 jQuery Playground 。
在 h3 元素中设置 Bootstrap 的 class 属性 text-primary 为其上色,同时增加 Bootstrap 的 class 属性 text-center 使文本居中显示。
在你的页面中增加一个 h3 元素。
确保你的 h3 元素有一个闭合标签。
为了让你的 h3 element 能被上色,需要添加 class text-primary 。
你的 h3 element 居中显示需要添加 class text-center 。
你的 h3 元素需要有文本 jQuery Playground 。
<h3 class="text-primary text-center">jQuery Playground</h3>