From a3bd39ee5ca07d88b832065357f538f01fccb0fe Mon Sep 17 00:00:00 2001 From: Neenad Ingole Date: Wed, 7 Mar 2018 09:08:29 +0530 Subject: [PATCH] fix(seed): Add Img to CSS Relative Positioning Challenge (#16728) --- challenges/01-responsive-web-design/applied-visual-design.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/challenges/01-responsive-web-design/applied-visual-design.json b/challenges/01-responsive-web-design/applied-visual-design.json index 381dc0ba71..cf3b22e087 100644 --- a/challenges/01-responsive-web-design/applied-visual-design.json +++ b/challenges/01-responsive-web-design/applied-visual-design.json @@ -1052,7 +1052,8 @@ "id": "587d781e367417b2b2512aca", "title": "Move a Relatively Positioned Element with CSS Offsets", "description": [ - "The CSS offsets of top or bottom, and left or right tell the browser how far to offset an item relative to where it would sit in the normal flow of the document. This can be slightly confusing, because you're offsetting an element away from a given spot, which effectively moves it towards the opposite direction. As you saw in the last challenge, using the top offset moved the h2 downwards. Likewise, using a left offset effectively moves an item to the right.", + "The CSS offsets of top or bottom, and left or right tell the browser how far to offset an item relative to where it would sit in the normal flow of the document. You're offsetting an element away from a given spot, which moves the element away from the referenced side (effectively, the opposite direction). As you saw in the last challenge, using the top offset moved the h2 downwards. Likewise, using a left offset moves an item to the right.", + "", "
", "Use CSS offsets to move the h2 15 pixels to the right and 10 pixels up." ],