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

Commit 434ea5c

Browse files
robinmetralscissorsneedfoodtoo
authored andcommitted
fix(challenges): fix typo in wrap-reverse description
1 parent c60d332 commit 434ea5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

challenges/01-responsive-web-design/css-flexbox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@
933933
"CSS flexbox has a feature to split a flex item into multiple rows (or columns). By default, a flex container will fit all flex items together. For example, a row will all be on one line.",
934934
"However, using the <code>flex-wrap</code> property, it tells CSS to wrap items. This means extra items move into a new row or column. The break point of where the wrapping happens depends on the size of the items and the size of the container.",
935935
"CSS also has options for the direction of the wrap:",
936-
"<ul><li><code>nowrap</code>: this is the default setting, and does not wrap items.</li><li><code>wrap</code>: wraps items from left-to-right if they are in a row, or top-to-bottom if they are in a column.</li><li><code>wrap-reverse</code>: wraps items from bottom-to-top if they are in a row, or left-to-right if they are in a column.</li></ul>",
936+
"<ul><li><code>nowrap</code>: this is the default setting, and does not wrap items.</li><li><code>wrap</code>: wraps items from left-to-right if they are in a row, or top-to-bottom if they are in a column.</li><li><code>wrap-reverse</code>: wraps items from bottom-to-top if they are in a row, or right-to-left if they are in a column.</li></ul>",
937937
"<hr>",
938938
"The current layout has too many boxes for one row. Add the CSS property <code>flex-wrap</code> to the <code>#box-container</code> element, and give it a value of wrap."
939939
],

0 commit comments

Comments
 (0)