You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
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.
The text was updated successfully, but these errors were encountered: