Re: [csswg-drafts] [css-multicol-1][css-display-3] Introduce a 'display' value for multi-column layout

@fantasai Is there a technical reason that requires that explicitly noted exclusion in Grid/Flexbox? 
Specifying for example "columns: 3; display:grid;" seems like a useful feature to have.  It would result in an outer column-wrapper box (or whatever the term is) with three column boxes that have grid layout instead of block layout. The layout would be similar to:
```html
<div style="columns:3">
  <div style="display:grid">
...
  </div>
</div>
```
except you don't need to introduce the redundant extra element.

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

Received on Thursday, 11 May 2017 15:41:51 UTC