This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 16036 - Margin collapsing: pathological collapsing behaviour for auto-height, non-zero min-height elements with self-collapsing child (Issue 211)
Summary: Margin collapsing: pathological collapsing behaviour for auto-height, non-zer...
Status: ASSIGNED
Alias: None
Product: CSS
Classification: Unclassified
Component: CSS Level 2 (show other bugs)
Version: unspecified
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: Bert Bos
QA Contact: public-css-bugzilla
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-02-20 18:04 UTC by Anton P
Modified: 2012-05-21 16:31 UTC (History)
0 users

See Also:


Attachments
testcase (591 bytes, text/html)
2012-05-21 16:31 UTC, Anton P
Details

Description Anton P 2012-02-20 18:04:59 UTC
Reported by David Baron.

The 2010-12-07 WD (http://www.w3.org/TR/2010/WD-CSS2-20101207/box.html#collapsing-margins) and some previous CRs contained an internal contradiction in the case of an auto-height, non-zero min-height element with a single self-collapsing child.  Section 8.3.1 said:

  % The bottom margin of an in-flow block box with a 'height' of 'auto'
  % is adjoining to its last in-flow block-level child's bottom margin
  % if the element has no bottom padding or border.
  % 
  % An element's own margins are adjoining if the 'min-height' property
  % is zero, and it has neither top or bottom borders nor top or bottom
  % padding, and it has a 'height' of either 0 or 'auto', and it does
  % not contain a line box, and all of its in-flow children's margins
  % (if any) are adjoining.

The former paragraph says that the parent's bottom margin adjoins the child's bottom margin (which adjoins its own top margin which adjoins the parent's top margin [via other rules not quoted here]).  Yet the latter paragraph doesn't cover the case in question (since min-height is non-zero) and so the implication is that that the parent's top and bottom margin are not adjoining; this was either a contradiction (if one believes that adjointness was implicitly transitive) or else it was the exact same problem that the current spec, with its new wording and terminology, now explicitly suffers from:

In the current spec, 8.3.1 (Collapsing margins) says:

  # Adjoining vertical margins collapse, except [omitted special cases]
  # [...]
  #
  # Two margins are adjoining if and only if:
  # [omitted conditions]
  # * both belong to vertically-adjacent box edges, i.e. form one of
  # the following pairs:
  #   - top margin of a box and top margin of its first in-flow child
  #   [omitted pair]
  #   - bottom margin of a last in-flow child and bottom margin of
  #     its parent if the parent has 'auto' computed height
  #   - top and bottom margins of a box that does not establish a new
  #     block formatting context and that has zero computed 'min-height',
  #     zero or 'auto' computed 'height', and no in-flow children
  #
  # A collapsed margin is considered adjoining to another margin if any
  # of its component margins is adjoining to that margin. 

So in the case being discussed, the parent's bottom margin adjoins the child's bottom margin, which adjoins its own top margin which adjoins the parent's top margin... and rather than this resulting in a contradiction, it simply means that all margins explicitly collapse together, a pathalogical behaviour given that the parent has non-zero used height.


A sensible resolution which handles this case is needed.



Issue 211: http://wiki.csswg.org/spec/css2.1#issue-211

Summary
    Transitivity error in margin collapsing
URI
    http://lists.w3.org/Archives/Public/www-style/2010Sep/0439.html
    http://lists.w3.org/Archives/Public/www-style/2010Sep/0451.html
Status
    Open. =errata= Deferred to Errata
Comment 1 Anton P 2012-02-20 20:08:54 UTC
At the F2F in Paris 2012
[http://lists.w3.org/Archives/Public/www-style/2012Feb/0529.html] it was tentatively decided to prevent collapsing in the case described:

Replace:

  #   - bottom margin of a last in-flow child and bottom margin of its
  #     parent if the parent has 'auto' computed height

with:

  |   - bottom margin of a last in-flow child and bottom margin of its
  |     parent if the parent has 'auto' computed height and either the
  |     parent has a zero computed min-height or the bottom margin of
  |     the last in-flow child does not collapse with the top margin of
  |     the parent


See also the proposals in Bug 16037.
Comment 2 Anton P 2012-04-11 15:56:17 UTC
An updated proposal is: [http://lists.w3.org/Archives/Public/www-style/2012Mar/0052.html]

Add a new bullet to:
   # "Adjoining vertical margins collapse, except:"

   | - If the top margin of a box with non-zero computed 'min-height'
   |   and 'auto' computed 'height' collapses with the bottom margin of
   |   its last in-flow child, then the child's bottom margin does not
   |   collapse with the parent's bottom margin.
Comment 3 Anton P 2012-05-21 16:25:53 UTC
The WG resolved to accept the change in Comment 2 to close this issue.

Minutes of resolution: http://lists.w3.org/Archives/Public/www-style/2012Apr/0101.html
Comment 4 Anton P 2012-05-21 16:31:01 UTC
Created attachment 1132 [details]
testcase