1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
| .item { display: grid; grid-template-columns: repeat(3, 100px); grid-template-rows: repeat(3, 100px); grid-template-areas: 'a b c ' 'd e f ' 'g h i';
place-content: center; }
.item>div { display: grid; place-items: center center; place-self: center; }
.item div:nth-child(1) { background-color: red; grid-column-start: span 2; grid-area: e; }
.item div:nth-child(2) { background-color: rgb(65, 107, 175); }
.item div:nth-child(3) { background-color: rgb(81, 231, 81); }
.item div:nth-child(4) { background-color: rgb(88, 23, 107); }
.item div:nth-child(5) { background-color: rgb(50, 179, 129); }
.item div:nth-child(6) { background-color: rgb(24, 70, 52); }
.item div:nth-child(7) { background-color: rgb(175, 65, 133); }
.item div:nth-child(8) { background-color: rgb(109, 110, 117); }
.item div:nth-child(9) { background-color: rgb(161, 134, 69); }
|