aboutsummaryrefslogtreecommitdiff
path: root/docs/components/scaffolding.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/components/scaffolding.md')
-rw-r--r--docs/components/scaffolding.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/components/scaffolding.md b/docs/components/scaffolding.md
index d819e2e0a..b532ba441 100644
--- a/docs/components/scaffolding.md
+++ b/docs/components/scaffolding.md
@@ -5,10 +5,6 @@ title: Scaffolding
Get the lowdown on the key pieces of Bootstrap's infrastructure, including our approach to better, faster, stronger web development.
-
-
-<a id="overview-doctype"></a>
-
### HTML5 doctype
Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.
@@ -20,10 +16,6 @@ Bootstrap makes use of certain HTML elements and CSS properties that require the
</html>
{% endhighlight %}
-
-
-<a id="overview-mobile"></a>
-
### Mobile first
With Bootstrap 2, we added optional mobile friendly styles for key aspects of the framework. With Bootstrap 3, we've rewritten the project to be mobile friendly from the start. Instead of adding on optional mobile styles, they're baked right into the core. In fact, **Bootstrap is mobile first**. Mobile first styles can be found throughout the entire library instead of in separate files.
@@ -40,10 +32,6 @@ You can disable zooming capabilities on mobile devices by adding `user-scalable=
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
{% endhighlight %}
-
-
-<a id="overview-type-links"></a>
-
### Typography and links
Bootstrap sets basic global display, typography, and link styles. Specifically, we:
@@ -54,18 +42,10 @@ Bootstrap sets basic global display, typography, and link styles. Specifically,
These styles can be found within `scaffolding.less`.
-
-
-<a id="overview-normalize"></a>
-
### Normalize
For improved cross-browser rendering, we use [Normalize.css](http://necolas.github.io/normalize.css/) to correct small inconsistencies across browsers and devices.
-
-
-<a id="overview-containers"></a>
-
### Containers
Bootstrap requires a containing element to wrap site contents and house our grid system. You may choose one of two containers to use in your projects. Note that, due to `padding` and more, neither container is nestable.