From 784136b086a62783fd25da16f1c7deee8f9a9989 Mon Sep 17 00:00:00 2001 From: Robert Samu <30748230+robertsamu@users.noreply.github.com> Date: Thu, 6 Dec 2018 06:33:50 +0200 Subject: [PATCH] Updated missing box-model example (#24018) --- guide/english/css/padding/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/css/padding/index.md b/guide/english/css/padding/index.md index bc55325492..646d686610 100644 --- a/guide/english/css/padding/index.md +++ b/guide/english/css/padding/index.md @@ -38,7 +38,7 @@ padding: 5px 1em 0 1em; ## Where in box model The padding property in CSS defines the innermost portion of the box model, creating space around an element's content, inside of any defined margins and/or borders. -![The CSS Box Model](https://www.w3.org/TR/css3-box/box.png) +![The CSS Box Model](https://i.imgur.com/S0QPDi4.png) ## Common Pitfalls