Skip to content

Commit bfac031

Browse files
Merge pull request #29 from avivmu/master
Adding a missing solution for an additional question
2 parents 780b91d + 5f24c58 commit bfac031

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

learn/tasks/grid/marking.md

+14
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ 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+
34+
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.
35+
```
36+
.item1 {
37+
order: 1
38+
}
39+
```
40+
Another valid solution with `z-index`:
41+
```
42+
.item1 {
43+
z-index: 1;
44+
}
45+
```
3246

3347
## Grid Layout Three
3448

0 commit comments

Comments
 (0)