gridgarden
                                
                                 gridgarden copied to clipboard
                                
                                    gridgarden copied to clipboard
                            
                            
                            
                        Level 5, description is wrong
Hi, I think task is incorrect due to description which says about negative values, nevertheless grid-column-start begins from 1. And grid-column-end: 5.
Hi Aksana, it's true that for normal use of these properties, values range from 1 to 5. However, a neat thing about grid is that they also accept negative values, which count the grid lines from the right side instead of the left.
grid-column-start: 1; counts the first grid line from the left.
grid-column-start: -1; counts the first grid line from the right.
Other negative values work in a similar way. Hope that helps.