diff --git a/guide/english/css/graceful-degradation/index.md b/guide/english/css/graceful-degradation/index.md
index 201627fb4b..1d89dd28ed 100644
--- a/guide/english/css/graceful-degradation/index.md
+++ b/guide/english/css/graceful-degradation/index.md
@@ -17,4 +17,16 @@ title: Graceful Degradation
### Example
A simple example is the use of 24-bit alpha-transparent PNGs. Those images can be displayed on modern browsers without problems. IE5.5 and IE6 would show the image, but transparency effects would fail (it can be made to work if necessary). Older browsers that do not support PNG would show alt text or an empty space.
-
+
+
+### Resources
+
+[How can polyfills be used as a fallback for older browsers](https://developer.mozilla.org/en-US/docs/Glossary/Polyfill)
+
+[What is polyfill](https://remysharp.com/2010/10/08/what-is-a-polyfill)
+
+[Online HTML beautifier](https://www.10bestdesign.com/dirtymarkup/)
+
+[W3C CSS validator](https://jigsaw.w3.org/css-validator/)
+
+[MDN - Graceful degradation](https://developer.mozilla.org/en-US/docs/Glossary/Graceful_degradation)
diff --git a/guide/english/css/pointer-events/index.md b/guide/english/css/pointer-events/index.md
index f9269c2419..310e25e83b 100644
--- a/guide/english/css/pointer-events/index.md
+++ b/guide/english/css/pointer-events/index.md
@@ -3,9 +3,27 @@ title: Pointer Events
---
## Pointer Events
-This is a stub. Help our community expand it.
+This property specifies how your mouse reacts when you hover over any element on a page.
-This quick style guide will help ensure your pull request gets accepted.
+### Example
+
+```css
+
+.example {
+ pointer-events: auto;
+ /*this will use the default look set by the browser agent*/
+}
+
+.example {
+ pointer-events: none;
+ /*this will use the regular mouse look when hovered over the element*/
+}
+
+```
+
+### Other acceptable values
+
+Other values could be: `initial`, and `inherit`