aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-12 02:06:18 -0700
committerMark Otto <[email protected]>2014-07-12 02:06:18 -0700
commit346bb975b310ff7a6c200b0e910c18a5b3eb2a9a (patch)
tree6ec6130dc2191dd5127d035033e386496546be69 /docs/getting-started
parent0d84bc1979d1f41b5ff4460dd11f281a32a484c4 (diff)
downloadbootstrap-346bb975b310ff7a6c200b0e910c18a5b3eb2a9a.tar.xz
bootstrap-346bb975b310ff7a6c200b0e910c18a5b3eb2a9a.zip
markdown for 3rd party
Diffstat (limited to 'docs/getting-started')
-rw-r--r--docs/getting-started/third-party-support.md19
1 files changed, 12 insertions, 7 deletions
diff --git a/docs/getting-started/third-party-support.md b/docs/getting-started/third-party-support.md
index 77d869c53..c469b644e 100644
--- a/docs/getting-started/third-party-support.md
+++ b/docs/getting-started/third-party-support.md
@@ -1,10 +1,16 @@
-<div class="bs-docs-section">
- <h1 id="third-parties" class="page-header">Third party support</h1>
- <p class="lead">While we don't officially support any third party plugins or add-ons, we do offer some useful advice to help avoid potential issues in your projects.</p>
+---
+layout: page
+title: Third party support
+---
+
+While we don't officially support any third party plugins or add-ons, we do offer some useful advice to help avoid potential issues in your projects.
+
+### Box-sizing
+
+Some third party software, including Google Maps and Google Custom Search Engine, conflict with Bootstrap due to `* { box-sizing: border-box; }`, a rule which makes it so `padding` does not affect the final computed width of an element. Learn more about [box model and sizing at CSS Tricks](http://css-tricks.com/box-sizing/).
+
+Depending on the context, you may override as-needed (Option 1) or reset the box-sizing for entire regions (Option 2).
- <h3 id="third-box-sizing">Box-sizing</h3>
- <p>Some third party software, including Google Maps and Google Custom Search Engine, conflict with Bootstrap due to <code>* { box-sizing: border-box; }</code>, a rule which makes it so <code>padding</code> does not affect the final computed width of an element. Learn more about <a href="http://css-tricks.com/box-sizing/">box model and sizing at CSS Tricks</a>.</p>
- <p>Depending on the context, you may override as-needed (Option 1) or reset the box-sizing for entire regions (Option 2).</p>
{% highlight scss %}
/* Box-sizing resets
*
@@ -48,4 +54,3 @@
.reset-box-sizing();
}
{% endhighlight %}
-</div>