From a3dd30b4c5938242513c727984e2b73d244ee1f9 Mon Sep 17 00:00:00 2001 From: Griffin Gaeth <34075514+ggaeth@users.noreply.github.com> Date: Mon, 26 Nov 2018 11:34:16 -0600 Subject: [PATCH] Replaced images that wouldn't load, added source (#20681) PM me if these do not meet the needs of the course. #Hacktoberfest2018 --- guide/english/css/overflow/index.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/guide/english/css/overflow/index.md b/guide/english/css/overflow/index.md index d640ad3185..c0e836ad95 100644 --- a/guide/english/css/overflow/index.md +++ b/guide/english/css/overflow/index.md @@ -24,25 +24,25 @@ For example, a given block-level element (`
`) set to 300px wide, that conta ```css .box-element { overflow: visible; } ``` -![Example Image](https://s26.postimg.org/gweu6g5yh/1-vissible.png) +![Example Image](https://i.gyazo.com/e742da4b965543d951185c6ffadb97d9.png) ### Hidden: ```css .box-element { overflow: hidden; } ``` -![Example Image](https://s26.postimg.org/l49mf77e1/2-hidden.png) +![Example Image](https://i.gyazo.com/cee767d9d8f89f4d6dd3fd7de7858fd9.png) ### Scroll: ```css .box-element { overflow: scroll; } ``` -![Example Image](https://s26.postimg.org/d8z30dxrd/3-scroll.png) +![Example Image](https://i.gyazo.com/6c41a51c5a0398fe74dbb5bd2f08a1fd.png) ### Auto: ```css .box-element { overflow: auto; } ``` -![Example Image](https://s26.postimg.org/z5q7ei0bt/4-autoank.png) +![Example Image](https://i.gyazo.com/173a13fd618d7946fceabcf35f33c458.png) ## overflow-x and overflow-y @@ -84,3 +84,4 @@ If the content overflows the Y-axis, then that content will be hidden, whilst a #### More Information: CSS-Tricks: overflow +W3Schools: image source