aboutsummaryrefslogtreecommitdiff
path: root/docs/components/dropdowns.md
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2015-08-10 16:31:28 -0700
committerMark Otto <[email protected]>2015-08-10 16:31:28 -0700
commit121615ceba7845faf7384ac8d5fa1975f84c9583 (patch)
tree60d6cb39736c625cb8820379dd5bfd8b80dc15a6 /docs/components/dropdowns.md
parent9fe6b85c32cf157268230b50f5ce85a8ad0d45bc (diff)
downloadbootstrap-121615ceba7845faf7384ac8d5fa1975f84c9583.tar.xz
bootstrap-121615ceba7845faf7384ac8d5fa1975f84c9583.zip
dropdown fixes and dropdown docs tweaks
Diffstat (limited to 'docs/components/dropdowns.md')
-rw-r--r--docs/components/dropdowns.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/components/dropdowns.md b/docs/components/dropdowns.md
index 4cbd6bf8b..0d26e3500 100644
--- a/docs/components/dropdowns.md
+++ b/docs/components/dropdowns.md
@@ -13,10 +13,10 @@ Dropdowns are toggleable, contextual overlays for displaying lists of links and
## Example
-Wrap the dropdown's trigger and the dropdown menu within `.dropdown`, or another element that declares `position: relative;`. Then add the menu's HTML.
+Wrap the dropdown's trigger and the dropdown menu within `.dropdown`, or another element that declares `position: relative;`. Then, add the menu's HTML.
{% example html %}
-<div class="dropdown">
+<div class="dropdown open">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown
</button>
@@ -38,10 +38,8 @@ Wrap the dropdown's trigger and the dropdown menu within `.dropdown`, or another
By default, a dropdown menu is automatically positioned 100% from the top and along the left side of its parent. Add `.dropdown-menu-right` to a `.dropdown-menu` to right align the dropdown menu.
-{% callout warning %}
-#### May require additional positioning
-
-Dropdowns are automatically positioned via CSS within the normal flow of the document. This means dropdowns may be cropped by parents with certain `overflow` properties or appear out of bounds of the viewport. Address these issues on your own as they arise.
+{% callout info %}
+**Heads up!** Dropdowns are positioned only with CSS and may need some additional styles for exact alignment.
{% endcallout %}
{% highlight html %}