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; }
```
-
+
### Hidden:
```css
.box-element { overflow: hidden; }
```
-
+
### Scroll:
```css
.box-element { overflow: scroll; }
```
-
+
### Auto:
```css
.box-element { overflow: auto; }
```
-
+
## 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