Re: [csswg-drafts] [css-align] Add shorthands for alignment properties

@jonathantneal in the particular case of `grid-template` you've to 
provide both values or the declaration is invalid:
* `grid-template: 100px 100px / 200px 200px 200px`: Ok
* `grid-template: 100px 100px / none`: Ok
* `grid-template: none / 200px 200px 200px`: Ok
* `grid-template: 100px 100px`: **Invalid**
* `grid-template: / 200px 200px 200px`: **Invalid**

I believe that for `place-*` if we set only one value it could be used
 for both `align-*` and `justify-*`. For example:
* `place-content: center / end` => `align-content: center; 
justify-content: end`
* `place-content: center` => `align-content: center; justify-content: 
center`



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

Received on Friday, 18 November 2016 05:21:08 UTC