From 96bed09af63edbd1baf1a1b96f81d4e8e6a6cb2d Mon Sep 17 00:00:00 2001 From: chandan270 <81625803+chandan270@users.noreply.github.com> Date: Thu, 26 Aug 2021 01:32:09 +0530 Subject: [PATCH] fix: remove image from challenge (#43303) --- .../move-a-relatively-positioned-element-with-css-offsets.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/move-a-relatively-positioned-element-with-css-offsets.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/move-a-relatively-positioned-element-with-css-offsets.md index 1ebc81473a..233713adda 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/move-a-relatively-positioned-element-with-css-offsets.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/move-a-relatively-positioned-element-with-css-offsets.md @@ -11,8 +11,6 @@ dashedName: move-a-relatively-positioned-element-with-css-offsets 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. - - # --instructions-- Use CSS offsets to move the `h2` 15 pixels to the right and 10 pixels up.