Skip to content

Commit 26f92e1

Browse files
committed
Adding a missing solution for an additional question
1 parent 780b91d commit 26f92e1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

learn/tasks/grid/marking.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@ I have used the shorthands below, however it would be correct for the student to
2929
grid-row: 2 / 4;
3030
}
3131
```
32+
###Additional question
33+
This extra question requires a little of research from the student. One way of achieving this would be to use `order` which we've encountered in the flexbox tutorial.
34+
```
35+
.item1 {
36+
order: 2
37+
}
38+
39+
.item2 {
40+
order: 1
41+
}
42+
```
3243

3344
## Grid Layout Three
3445

0 commit comments

Comments
 (0)