Re: [csswg-drafts] [css-grid] Shortcut syntax for repeat(M, 1fr)

If `efr` ends up becoming a thing (https://github.com/w3c/csswg-drafts/issues/2677) then this could work:

````
grid-template-columns: efr(12);
grid-template-rows: efr(12);
grid-template: efr(4) / efr(3);
````
then we can also have the `fr` equivelent so that people have a choice over what type of columns/rows they want.

````
grid-template-columns: fr(12);
grid-template-rows: fr(12);
grid-template: fr(4) / fr(3);
````

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

Received on Monday, 14 May 2018 10:58:30 UTC