From f1bcd5f0dec39d8fc688345c760c2f96c383cb6a Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Sat, 20 Apr 2019 11:45:18 -0500 Subject: [PATCH] fix/add-full-solutions-to-flexbox (#35760) --- ...-using-the-align-items-property.english.md | 27 +++++- ...ng-the-justify-content-property.english.md | 27 +++++- ...ate-a-column-in-the-tweet-embed.english.md | 91 +++++++++++++++++- ...-create-rows-in-the-tweet-embed.english.md | 96 ++++++++++++++++++- ...play-flex-to-position-two-boxes.english.md | 25 ++++- ...ems-property-in-the-tweet-embed.english.md | 93 +++++++++++++++++- .../use-the-align-self-property.english.md | 27 +++++- ...ction-property-to-make-a-column.english.md | 26 ++++- ...irection-property-to-make-a-row.english.md | 26 ++++- ...x-grow-property-to-expand-items.english.md | 26 ++++- ...use-the-flex-shorthand-property.english.md | 25 ++++- ...shrink-property-to-shrink-items.english.md | 27 +++++- ...roperty-to-wrap-a-row-or-column.english.md | 51 +++++++++- ...ent-property-in-the-tweet-embed.english.md | 94 +++++++++++++++++- ...der-property-to-rearrange-items.english.md | 27 +++++- 15 files changed, 654 insertions(+), 34 deletions(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.english.md index a9e6e8510e..4c25f27f6d 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-align-items-property.english.md @@ -73,7 +73,30 @@ tests: ## Solution
-```js -// solution required +```html + + +
+

Hello

+

Goodbye

+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.english.md index cc0afbeccc..fa9568f6d4 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/align-elements-using-the-justify-content-property.english.md @@ -74,7 +74,30 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-a-column-in-the-tweet-embed.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-a-column-in-the-tweet-embed.english.md index 011306cac6..a40403e2d9 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-a-column-in-the-tweet-embed.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-a-column-in-the-tweet-embed.english.md @@ -132,7 +132,94 @@ tests: ## Solution
-```js -// solution required +```html + +
+ Quincy Larson's profile picture +
+

Quincy Larson

+

@ossia

+
+ +
+
+

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

+ 1:32 PM - 12 Jan 2018 +
+
+ ```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.english.md index 844b419254..0580c67a23 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed.english.md @@ -137,9 +137,97 @@ tests: ## Solution
- -```js -var code = "header {flex-direction: row;} footer {flex-direction: row;}" +```html + +
+ Quincy Larson's profile picture +
+

Quincy Larson

+

@ossia

+
+ +
+
+

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

+ 1:32 PM - 12 Jan 2018 +
+
+ ``` -
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-display-flex-to-position-two-boxes.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-display-flex-to-position-two-boxes.english.md index 14b44dcc04..e789d4a995 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-display-flex-to-position-two-boxes.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-display-flex-to-position-two-boxes.english.md @@ -67,7 +67,28 @@ tests: ## Solution
-```js -// solution required +```html + +
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-align-items-property-in-the-tweet-embed.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-align-items-property-in-the-tweet-embed.english.md index e2affaad68..1d9bea2fbb 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-align-items-property-in-the-tweet-embed.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-align-items-property-in-the-tweet-embed.english.md @@ -134,7 +134,96 @@ tests: ## Solution
-```js -// solution required +```html + +
+ Quincy Larson's profile picture +
+

Quincy Larson

+

@ossia

+
+ +
+
+

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

+ 1:32 PM - 12 Jan 2018 +
+
+ ```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-align-self-property.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-align-self-property.english.md index 24cc0e79c6..6b4f520911 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-align-self-property.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-align-self-property.english.md @@ -71,7 +71,30 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.english.md index 305d901694..fd42bbc84e 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.english.md @@ -67,7 +67,29 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-row.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-row.english.md index acd7dbdb7b..a60fe55381 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-row.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-row.english.md @@ -69,7 +69,29 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-grow-property-to-expand-items.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-grow-property-to-expand-items.english.md index 00b724dab7..79ca9086f6 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-grow-property-to-expand-items.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-grow-property-to-expand-items.english.md @@ -70,7 +70,29 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-shorthand-property.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-shorthand-property.english.md index 4f3b92edfe..94431e4b14 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-shorthand-property.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-shorthand-property.english.md @@ -73,7 +73,28 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-shrink-property-to-shrink-items.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-shrink-property-to-shrink-items.english.md index e2282d9aa6..167ad38dd7 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-shrink-property-to-shrink-items.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-shrink-property-to-shrink-items.english.md @@ -72,7 +72,30 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column.english.md index eb49ad440a..bfcd6a8bc1 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-flex-wrap-property-to-wrap-a-row-or-column.english.md @@ -95,7 +95,54 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
+
+
+
+
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-justify-content-property-in-the-tweet-embed.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-justify-content-property-in-the-tweet-embed.english.md index da46be0304..1170cec43c 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-justify-content-property-in-the-tweet-embed.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-justify-content-property-in-the-tweet-embed.english.md @@ -133,9 +133,95 @@ tests: ## Solution
- -```js -var code = "header .profile-name {display: flex; flex-direction: column; justify-content: center; margin-left: 10px;}" +```html + +
+ Quincy Larson's profile picture +
+

Quincy Larson

+

@ossia

+
+ +
+
+

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

+ 1:32 PM - 12 Jan 2018 +
+
+ ``` -
diff --git a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-order-property-to-rearrange-items.english.md b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-order-property-to-rearrange-items.english.md index 3c7e2de754..e4e4eb77a8 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-order-property-to-rearrange-items.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-flexbox/use-the-order-property-to-rearrange-items.english.md @@ -70,7 +70,30 @@ tests: ## Solution
-```js -// solution required +```html + + +
+
+
+
```