diff --git a/snippets/sibling-fade.md b/snippets/sibling-fade.md
index 3f5de180b..06261c13b 100644
--- a/snippets/sibling-fade.md
+++ b/snippets/sibling-fade.md
@@ -1,49 +1,71 @@
-### sibling-fade
+### Sibling fade
-Fade out siblings around a hovered item
+Fades out the siblings of a hovered item.
#### HTML
```html
-
+
+
+
+
#### Explanation
-1. `display: flex ` enables flexbox.
-2. `transition: opacity 0.2s` means changes to opacity will be transitioned over 0.2 seconds.
-3. `nav:hover a:not(:hover)` changes the opacity of un-hover childs to 0.4.
+1. `transition: opacity 0.2s` specifies that changes to opacity will be transitioned over 0.2 seconds.
+2. `.sibling-fade:hover span:not(:hover)` specifies that when the parent is hovered, select any `span` children
+ that are not currently being hovered and change their opacity to `0.5`.
#### Browser support
-✅ No caveats.
+
+✅ No caveats.
+
+