aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started
diff options
context:
space:
mode:
Diffstat (limited to 'docs/getting-started')
-rw-r--r--docs/getting-started/accessibility.md2
-rw-r--r--docs/getting-started/download.md4
2 files changed, 5 insertions, 1 deletions
diff --git a/docs/getting-started/accessibility.md b/docs/getting-started/accessibility.md
index 4d95a1631..1d60957ea 100644
--- a/docs/getting-started/accessibility.md
+++ b/docs/getting-started/accessibility.md
@@ -7,7 +7,7 @@ Bootstrap follows common web standards and—with minimal extra effort—can be
### Skip navigation
-If your navigation contains many links and comes before the main content in the DOM, add a `Skip to main content` link immediately after your opening `<body>` tag. [(read why)](http://a11yproject.com/posts/skip-nav-links/)
+If your navigation contains many links and comes before the main content in the DOM, add a `Skip to main content` link [before the navigation](http://a11yproject.com/posts/skip-nav-links/). Using the `.sr-only` class will visually hide the skip link, and the `.sr-only-focusable` class will ensure that the link becomes visible once focused (for sighted keyboard users).
{% highlight html %}
<body>
diff --git a/docs/getting-started/download.md b/docs/getting-started/download.md
index 2575b7f2e..1fd4ae658 100644
--- a/docs/getting-started/download.md
+++ b/docs/getting-started/download.md
@@ -44,3 +44,7 @@ You can also install and manage Bootstrap's Sass, CSS, and JavaScript using [Bow
Bootstrap is available as [an npm package](https://www.npmjs.org/package/bootstrap). Install it into your Node powered apps with:
{% highlight bash %}$ npm install bootstrap{% endhighlight %}
+
+### Autoprefixer required for Less/Sass
+
+Bootstrap uses [Autoprefixer](https://github.com/postcss/autoprefixer) to deal with [CSS vendor prefixes](http://webdesign.about.com/od/css/a/css-vendor-prefixes.htm). If you're compiling Bootstrap from its Less/Sass source and not using our Gruntfile, you'll need to integrate Autoprefixer into your build process yourself. If you're using precompiled Bootstrap or using our Gruntfile, you don't need to worry about this because Autoprefixer is already integrated into our Gruntfile.