]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
copyedit media queries docs added in aefed0ada9791338be11dd5318b24f17f517d51a
authorChris Rebert <code@rebertia.com>
Mon, 12 Aug 2013 18:31:45 +0000 (11:31 -0700)
committerChris Rebert <code@rebertia.com>
Mon, 12 Aug 2013 18:31:45 +0000 (11:31 -0700)
css.html

index 190f8f237759e3c0b232ea2c052fc6715c801420..cf3e423b49589738497f01e6ce3d0a6cfefa1cee 100644 (file)
--- a/css.html
+++ b/css.html
@@ -84,7 +84,7 @@ base_url: "../"
     <p class="lead">Bootstrap includes a responsive, mobile-first fluid grid system that appropriately scales up to 12 columns as the device or viewport size increases. It includes <a href="#grid-example-basic">predefined classes</a> for easy layout options, as well as powerful <a href="#grid-less">mixins for generating more semantic layouts</a>.</p>
 
     <h3 id="grid-media-queries">Media queries</h3>
-    <p>We use the following media queries to create our the key breakpoints in our grid system.</p>
+    <p>We use the following media queries to create the key breakpoints in our grid system.</p>
 {% highlight css %}
 /* Extra small devices (phones, up to 480px) */
 /* No media query since this is the default in Bootstrap */
@@ -98,7 +98,7 @@ base_url: "../"
 /* Large devices (large desktops, 1200px and up) */
 @media (min-width: @screen-large-desktop) { ... }
 {% endhighlight %}
-    <p>We ocassionally expand on these media queries to include a <code>max-width</code> to limit CSS to a narrower set of devices.</p>
+    <p>We occasionally expand on these media queries to include a <code>max-width</code> to limit CSS to a narrower set of devices.</p>
 {% highlight css %}
 @media (max-width: @screen-phone-max) { ... }
 @media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) { ... }