aboutsummaryrefslogtreecommitdiff
path: root/docs/scaffolding.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-04-30 15:33:35 -0700
committerMark Otto <[email protected]>2012-04-30 15:33:35 -0700
commitc204bc66d693b1dece2d69384431ae7a4e88b80f (patch)
tree2c43e0ea21d5bc503e538e37f1a38d13154d54d0 /docs/scaffolding.html
parent6e9756ebb682dbb1ea9c9a75653838bd130a9cb6 (diff)
downloadbootstrap-c204bc66d693b1dece2d69384431ae7a4e88b80f.tar.xz
bootstrap-c204bc66d693b1dece2d69384431ae7a4e88b80f.zip
#3237: change to CSS comments in responsive docs
Diffstat (limited to 'docs/scaffolding.html')
-rw-r--r--docs/scaffolding.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/scaffolding.html b/docs/scaffolding.html
index caffa6af6..e88656dbb 100644
--- a/docs/scaffolding.html
+++ b/docs/scaffolding.html
@@ -529,16 +529,16 @@
</div><!-- /.span -->
<div class="span8">
<pre class="prettyprint linenums">
- // Landscape phones and down
+ /* Landscape phones and down */
@media (max-width: 480px) { ... }
- // Landscape phone to portrait tablet
+ /* Landscape phone to portrait tablet */
@media (max-width: 767px) { ... }
- // Portrait tablet to landscape and desktop
+ /* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }
- // Large desktop
+ /* Large desktop */
@media (min-width: 1200px) { ... }
</pre>
</div><!-- /.span -->