diff --git a/docs/guide/scoped-css.md b/docs/guide/scoped-css.md
index 5f19e8a51..904a2c58f 100644
--- a/docs/guide/scoped-css.md
+++ b/docs/guide/scoped-css.md
@@ -62,7 +62,19 @@ The above will be compiled into:
.a[data-v-f3f3eg9] .b { /* ... */ }
```
-Some pre-processors, such as Sass, may not be able to parse `>>>` properly. In those cases you can use the `/deep/` or `::v-deep` combinator instead - both are aliases for `>>>` and work exactly the same.
+Some pre-processors, such as Sass, may not be able to parse `>>>` properly. In those cases you can use the `/deep/` or `::v-deep` combinator instead - both are aliases for `>>>` and work exactly the same. Based on the example above these two expressions will be compiled to the same output:
+
+``` html
+
+```
+
+``` html
+
+```
## Dynamically Generated Content