aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-03-30 01:55:39 -0700
committerMark Otto <[email protected]>2013-03-30 01:55:39 -0700
commita4901e2da8011aa60fbf3d02187f7392297043fb (patch)
tree709c83c8e9a3787e6501e543aa2e234ee417353e /docs
parent1dcadede361e7f0dba8ad83b4a07171d0e39f3f4 (diff)
downloadbootstrap-a4901e2da8011aa60fbf3d02187f7392297043fb.tar.xz
bootstrap-a4901e2da8011aa60fbf3d02187f7392297043fb.zip
mention responsive image and google maps
Diffstat (limited to 'docs')
-rw-r--r--docs/docs.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/docs.html b/docs/docs.html
index 5219b724f..74f7c6e70 100644
--- a/docs/docs.html
+++ b/docs/docs.html
@@ -208,7 +208,6 @@ title: Bootstrap Documentation
<h3>HTML5 doctype required</h3>
<p>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.</p>
-
{% highlight html linenos %}
<!DOCTYPE html>
<html lang="en">
@@ -219,11 +218,13 @@ title: Bootstrap Documentation
<h3>Mobile first</h3>
<p>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, <strong>Bootstrap is mobile first</strong>. Mobile first styles can be found throughout the entire library instead of in separate files.</p>
<p>To ensure proper rendering and touch zooming, <strong>add the viewport meta tag</strong> to your <code>&lt;head&gt;</code>.</p>
-
{% highlight html linenos %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% endhighlight %}
+ <h3>Responsive images</h3>
+ <p>We automatically attempt to scale images to appropriate sizes with a global <code>max-width: 100%;</code> on all <code>&lt;img&gt;</code> elements. If you run into problems (e.g., with Google Maps), be sure to disable this property on a per-case basis.</p>
+
<h3>Typography and links</h3>
<p>Bootstrap sets basic global display, typography, and link styles. Specifically, we:</p>
<ul>