Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
spec:css3-grid-layout [2011/12/04 14:43] mmielkespec:css3-grid-layout [2012/08/08 08:23] pcupp
Line 1: Line 1:
 ===== CSS3 Grid Layout ===== ===== CSS3 Grid Layout =====
  
-This page contains the issues that are not yet listed in the specification and the resolutions for issues that were in the spec. but got resolved.+This page contains material to facilitate discussion of issues surrounding the CSS3 Grid Layout module.
  
 ===== spec pointers ===== ===== spec pointers =====
Line 9: Line 9:
 Link to current Editor's draft: [[http://dev.w3.org/csswg/css3-grid-align/]] Link to current Editor's draft: [[http://dev.w3.org/csswg/css3-grid-align/]]
  
 +===== Issues for August 8th, 2012 Telcon =====
 +
 +=== Alignment of Grid Items versus Flex Items versus Block-level Boxes ===
 +
 +Three scenarios where boxes are stretch aligned that we could make agree in their behavior (or not):
 +
 +  - Resolving the width and left/right margins of block-level boxes that "stretch" to touch the edges of their containing block
 +  - Resolving the cross size property and cross margins of a flex item such that its margin box stretches to touch the cross edges of its line
 +  - Resolving the width or height and margins of a grid item such that the box touches the edges of its grid cell (now calling this grid-area in most recent ED)
 +
 +In each of these cases we satisfy the equation: 
 +
 +margin_size1 + border_size1 + padding_size1 + box_size + padding_size2 + border_size2 + margin_size2 == space afforded to item by parent container
 +
 +  - If box_size is auto then first we adjust it up or down to make the equation true while respecting any min/max constraints on the applicable dimension
 +  - If that isn't sufficient we do additional adjustments on margins
 +      - If only one margin was auto we adjust that one to make the equation true
 +      - If both of the margins were auto we take the additional space needed to make the equation true and divide it by 2 then assign it to each margin
 +      - If neither margin is auto (the over-constrained case), we take the second margin (nearest the ending edge) and adjust it to make the equation true
 +
 +When both margins are auto though, and the box is larger than the space afforded to it by its container, a paragraph of section 9.3 for css3-box http://www.w3.org/TR/css3-box/#blockwidth says:
 +
 +If ‘width’ is not ‘auto’ and ‘border-left-width’ + ‘padding-left’ + ‘width’ + ‘padding-right’ + ‘border-right-width’ + scrollbar width (if any) (plus any of ‘margin-left’ or ‘margin-right’ that are not ‘auto’) is larger than the width of the containing block, then any ‘auto’ values for ‘margin-left’ or ‘margin-right’ are, for the following rules, treated as zero. We should drop this paragraph. It causes blocks that are wider than their parent not to be centered (unlike blocks that are narrower), which looks strange. 
 +
 +The Grid ignores the paragraph above as suggested so that two auto margins will always result in a centered item whenever width/height is not auto.  I noticed that Flexbox keeps the last sentence per its example 10 in the latest ED http://dev.w3.org/csswg/css3-flexbox/#auto-margins. 
 +
 +=== Valid Grid Items ===
 +
 +Options:
 +  - Snap to definition of Flex Items i.e. every child element is a valid Grid Item and runs of loose text are surrounded in anonymous items (current ED)
 +  - Make contents of a Grid Element wrapped in a default Grid Item (which is an anonymous flow) and then pull elements out of that flow and onto grid by using the grid-* properties
 +  
 +The first option works well with auto-positioning while the second would require the author to write a (trivial) rule to declare that all elements are in fact grid items: #grid > * { grid-area: auto; }
 +The second option could be used position descendants of the grid in addition to just children, but breaks from the pattern established by flexbox and would differ from IE's current implementation.
 +
 +=== Shorthands ===
 +
 +We have four leaf level properties and five proposed shorthands.  Are we overdoing it?  See table below from Hamburg F2F.
 +
 +===== Issues for Hamburg F2F =====
 +
 +=== Scoping ===
 +
 +  - Scoping of Grid Layout and Template Layout specs
 +  - Drop named lines from this level of Grid Layout
 +  - Adopting column-gap etc., adding row equivalents, to handle gutters
 +
 +=== Naming ===
 +
 +  - grid-flow: row | column | layer
 +  - rename grid-rows --> grid-row-tracks, grid-columns --> grid-column-tracks
 +  - auto/fit-content becomes fit-content
 +  - grid positioning properties:
 +
 +^  //grid-area//  ^  grid-column  ^  grid-row  |
 +^  grid-position  |  grid-column-position  |  grid-row-position  |
 +^  grid-span  |  grid-column-span  |  grid-row-span  |
 +
 +=
 +
 +^  //C R ΔC ΔR//  ^  C ΔC  ^  R ΔR  |
 +^  C R  |  C  |  R  |
 +^  ΔC ΔR  |  ΔC  |  ΔR  |
 +
 +=== Default handling of content ===
 +
 +  - auto-placement is progressive pack w/ pointer @ start before corner
 +  - auto-placement vs. anonymous block
 +  - default value of grid-flow?
 +  - using "display: grid" vs implied grid lines
 +  - default track sizing is an open issue, if you have ideas let us know
  
 ===== Action Items ===== ===== Action Items =====
Line 16: Line 87:
 Grid-layer vs. z-index property for Grid Grid-layer vs. z-index property for Grid
  
-= Summary: =+== Summary: =
 + 
 +Grid-layer is currently used to control the stacking of grid items in a grid element; one example of this that is mentioned in the current Editor's Draft would be using Grid to build a range control where the "thumb" of the control is displayed on top of the underlying track. However, grid-layer is in many ways similar to the existing z-index property. Is a separate property needed, or can z-index replace the grid-layer property? 
 + 
 +We have three primary goals w/r/t stacking Grid Items: 
 + 
 +  - Grid Items draw atomically.  Like positioned elements, Grid has among its primary scenarios the ability to overlap and layer its items (see section 2.4 Grid Layering of Elements).  To avoid a counter-intuitive interleaving of backgrounds, floats, and inline content, Grid Items should form a new stacking context. 
 +  - Grid Items are in front of the Grid Element, even when the Grid Item is given a negative z-index.  Imagine an author using a tool, right-clicking an item and choosing "send to back" from a context menu.  The tool should set a negative z-index on the Grid Item and not have the Grid Item disappear behind the background of the Grid Element.  Also, if a nested Grid is given a positive z-index, it should not cover its Grid Items.  Therefore we need the Grid Element to serve as a stacking context for its Grid Items. 
 +  - We want to avoid impacting any positioning scenarios.  It would be unexpected if the author inadvertently changed the containing block or the stacking context for a positioned descendant just by inserting a Grid layout in its ancestry.  
 + 
 + 
 +== Proposal: == 
 + 
 +Z-index should be used to replace the grid-layer property (i.e. z-index applies to statically-positioned Grid Items.) Specifically, in cases where Grid Items overlap, z-index provides control over the drawing order of Grid Items. Both Grid elements and Grid Items generate a stacking context as described for floats (step 5, section 14) in the [[http://www.w3.org/TR/2007/WD-css3-box-20070809/#stacking|CSS3 Box Model]]. 
 + 
 +Note also that using z-index in place of grid-layer has been [[http://lists.w3.org/Archives/Public/www-style/2011May/0344.html|previously discussed]] on the www-styling mailing list.
  
-Grid-layer is currently used to control the stacking of grid items in a grid element; one example of this would be using Grid to build a range control where the "thumb" of the control is displayed on top of the underlying track. However, grid-layer is in many ways similar to the existing z-index property. Is a separate property needed, or can z-index replace the grid-layer property?+==== Issue 2:  ==== 
 +Fractional-track sizing algorithm update
  
-Proposal: =+== Summary==
  
-Z-index should be used to replace the grid-layer property. Specifically, in cases where Grid Items overlap, z-index provides control over the drawing order of Grid Items. Both Grid elements and Grid Items generate a stacking context as described for floats (step 5, section 14) in the [[http://www.w3.org/TR/2007/WD-css3-box-20070809/#stacking|CSS3 Box Model]]. Note that this would imply that z-index applies to statically positioned Grid Items+The grid-sizing algorithm introduced in the previous [[http://dev.w3.org/csswg/css3-grid-align|Editor's Draft]] did not define the expected behavior for sizing a fractionally-sized track (e.g. 1fr, 2fr,...) when a Grid Element was shrink-to-fit. This should be addressed so that future implementations of Grid Layout behave predictably across platforms.
  
-Note also that this change has been [[http://lists.w3.org/Archives/Public/www-style/2011May/0344.html|previously discussed]] on the www-styling mailing list.+== Proposal==
  
 +We propose to modify the existing grid sizing algorithm as follows: if the Grid Element is shrink-to-fit, then we set the size of a fractional track (i.e. determine the size of a '1fr' track) by making sure that 1) the proportions of all fractional tracks are preserved (e.g. a '1fr' track is half the size of a '2fr' track) and 2) fractional tracks are large enough contain all Grid Items that span them. If the Grid Element is not shrink-to-fit, then the algorithm follows its current path. The specific algorithm updates can be found in step 6 of the updated Editor's Draft.
    
  
 
spec/css3-grid-layout.txt · Last modified: 2014/12/09 15:48 by 127.0.0.1
Recent changes RSS feed Valid XHTML 1.0 Valid CSS Driven by DokuWiki