Re: [csswg-drafts] [css-grid] Control size of gutters explicitly

@jhpratt - that syntax would be really simple but doesn't convey anything about repetition. A repeat syntax makes it really clear that it has to be repeated.

@Nokel81 Right now, the repeat syntax takes a number as first arguments to figure out how many times it needs to repeat. I skipped the `auto-fill` keyword which might solve my issue too. So the updated syntax will be like,
```css
grid-gap: 3rem / repeat(auto-fill, 1rem 2rem);
```

I have now included the slash to make sure we understand the separation for columns and rows. Also, in `grid-gap` row comes before column so i reversed the order.

-- 
GitHub Notification of comment by praveenpuglia
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1659#issuecomment-318802453 using your GitHub account

Received on Saturday, 29 July 2017 04:10:54 UTC