diff --git a/docs/components/dropdown.md b/docs/components/dropdown.md
index fec7e53e..f84a1198 100644
--- a/docs/components/dropdown.md
+++ b/docs/components/dropdown.md
@@ -33,6 +33,59 @@ Dropdowns are designed to work well with [menus](/components/menu) to provide a
## Examples
+### Getting the Selected Item
+
+When dropdowns are used with [menus](/components/menu), you can listen for the `sl-select` event to determine which menu item was selected. The menu item element will be exposed in `event.detail.item`. You can set `value` props to make it easier to identify commands.
+
+```html preview
+
+
+ Edit
+
+ Cut
+ Copy
+ Paste
+
+
+
+
+
+```
+
+Alternatively, you can listen for the `click` event on individual menu items. Note that, using this approach, disabled menu items will still emit a `click` event.
+
+```html preview
+
+
+ Edit
+
+ Cut
+ Copy
+ Paste
+
+
+
+
+
+```
+
### Placement
The preferred placement of the dropdown can be set with the `placement` attribute. Note that the actual position may vary to ensure the panel remains in the viewport.
@@ -121,57 +174,4 @@ Dropdown panels will be clipped if they're inside a container that has `overflow
```
-### Getting the Selected Item
-
-When dropdowns are used with [menus](/components/menu), you can listen for the `sl-select` event to determine which menu item was selected. The menu item element will be exposed in `event.detail.item`. You can set `value` props to make it easier to identify commands.
-
-```html preview
-
-
- Edit
-
- Cut
- Copy
- Paste
-
-
-
-
-
-```
-
-Alternatively, you can listen for the `click` event on individual menu items. Note that, using this approach, disabled menu items will still emit a `click` event.
-
-```html preview
-
-
- Edit
-
- Cut
- Copy
- Paste
-
-
-
-
-
-```
-
[component-metadata:sl-dropdown]