Skip to content
This repository was archived by the owner on Sep 25, 2019. It is now read-only.

Commit d560d58

Browse files
TomerPacificjoshalling
authored andcommitted
fix(challenges): rephrased wording in applied visual design (#268)
1 parent 25ea07e commit d560d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

challenges/01-responsive-web-design/applied-visual-design.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,7 @@
15181518
"title": "Lock an Element to the Browser Window with Fixed Positioning",
15191519
"description": [
15201520
"The next layout scheme that CSS offers is the <code>fixed</code> position, which is a type of absolute positioning that locks an element relative to the browser window. Similar to absolute positioning, it's used with the CSS offset properties and also removes the element from the normal flow of the document. Other items no longer \"realize\" where it is positioned, which may require some layout adjustments elsewhere.",
1521-
"One key difference from the <code>absolute</code> position is that the element won't move when the user scrolls.",
1521+
"One key difference between the <code>fixed</code> and <code>absolute</code> positions is that an element with a fixed position won't move when the user scrolls.",
15221522
"<hr>",
15231523
"The navigation bar in the code is labeled with an id of <code>navbar</code>. Change its <code>position</code> to <code>fixed</code>, and offset it 0 pixels from the <code>top</code> and 0 pixels from the <code>left</code>. Notice the (lack of) impact to the <code>h1</code> position, it hasn't been pushed down to accommodate the navigation bar and would need to be adjusted separately."
15241524
],

0 commit comments

Comments
 (0)