Grid Garden

◀ Level 1 of 28 ▾ ▶
Reset

Welcome to Grid Garden, where you write CSS code to grow your carrot garden! Water only the areas that have carrots by using the grid-column-start property.

For example, grid-column-start: 3; will water the area starting at the 3rd vertical grid line, which is another way of saying the 3rd vertical border from the left in the grid.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#garden {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  grid-template-rows: 20% 20% 20% 20% 20%;
}

#water {
}

Grid Garden is created by Codepip • GitHub • Twitter • English English Español Français Deutsch Nederlands Italiano Português(BR) Português(PT) Svenska Norsk Polski Română Български Latviešu Русский Українська Ελληνικά Türkçe فارسی 简体中文 繁體中文 日本語 한국어
Want to learn CSS flexbox? Play Flexbox Froggy.