You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Abstract: This CSS module describes a way for authors to animate the values of CSS properties over time, using keyframes. The behavior of these keyframe animations can be controlled by specifying their duration, number of repeats, and repeating behavior.
Copy file name to clipboardExpand all lines: css-grid/Overview.bs
+23-18Lines changed: 23 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
1
<h1>CSS Grid Layout Module Level 1</h1>
2
2
3
3
<pre class='metadata'>
4
-
Status: ED
5
-
Work Status: Refining
4
+
Deadline: 2017-06-30
5
+
Date: 2016-09-29
6
+
Status: CR
7
+
Work Status: Testing
6
8
Shortname: css-grid
7
9
Level: 1
8
10
Group: csswg
@@ -743,9 +745,9 @@ Reordering and Accessibility</h2>
743
745
"a b c"
744
746
"f f f";
745
747
grid-template-columns: auto 1fr 20%; }
746
-
article { grid-position: b; min-width: 12em; }
747
-
nav { grid-position: a; /* auto min-width */ }
748
-
aside { grid-position: c; min-width: 12em; }
748
+
article { grid-area: b; min-width: 12em; }
749
+
nav { grid-area: a; /* auto min-width */ }
750
+
aside { grid-area: c; min-width: 12em; }
749
751
</pre>
750
752
751
753
As an added bonus,
@@ -895,7 +897,9 @@ Sizing Grid Containers</h3>
895
897
896
898
In both inline and block formatting contexts,
897
899
the <a>grid container</a>’s ''auto''<a>block size</a> is its max-content size.
898
-
<span class="issue">The block layout spec should define this?</span>
900
+
901
+
<span class="note">The block layout spec should probably define this,
902
+
but it isn't written yet.</span>
899
903
900
904
The <a>max-content size</a> of a <a>grid container</a> is
901
905
the sum of the <a>grid container’s</a> track sizes (including gutters)
@@ -3599,8 +3603,9 @@ Grid Sizing Algorithm</h3>
3599
3603
had that size and all other rows were infinite.
3600
3604
3601
3605
<div class="issue">
3602
-
Alternatively, we could
3603
-
assume the <a>available space</a> that it would have as the maximum of:
3606
+
Would it help to have <a href="https://lists.w3.org/Archives/Public/www-style/2016Jan/0128.html">heuristics</a>
3607
+
that attempt a more accurate initial estimate?
3608
+
E.g. assuming the <a>available space</a> that it would have as the maximum of:
3604
3609
3605
3610
<ul>
3606
3611
<li>
@@ -3622,8 +3627,8 @@ Grid Sizing Algorithm</h3>
3622
3627
or a ''max-content'', ''auto'', or <<flex>> max sizing function.
3623
3628
</ul>
3624
3629
3625
-
This is likely to reduce the amount of re-layout passes that are necessary,
3626
-
but will it produce a different result in any cases?
3630
+
This is may reduce the amount of re-layout passes that are necessary,
3631
+
but will it produce a different or better result in any cases?
3627
3632
Should we adopt it into the spec?
3628
3633
</div>
3629
3634
@@ -3645,10 +3650,6 @@ Grid Sizing Algorithm</h3>
3645
3650
and <a spec=css-multicol>multi-column elements</a>.
3646
3651
</div>
3647
3652
3648
-
Issue: Is one cycle enough?
3649
-
3650
-
Issue: Would it help to have <a href="https://lists.w3.org/Archives/Public/www-style/2016Jan/0128.html">smarter heuristics</a> for the initial size calculation?
3651
-
3652
3653
<li>
3653
3654
Finally, the <a>grid container</a> is sized
3654
3655
using the resulting size of the <a>grid</a> as its content size,
Copy file name to clipboardExpand all lines: css-inline/Overview.bs
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1065,6 +1065,9 @@ Raised and sunken caps</h4>
1065
1065
</figure>
1066
1066
1067
1067
Issue: Handle glyph ink above cap height of font.
1068
+
Proposal: Make it an exclusion area for line boxes and border boxes. Include margin specified on initial-letter as part of exclusion area in order to control spacing.
1069
+
1070
+
Issue: Draw a box model diagram here. Does the margin of the initial letter collapse with its container?
1068
1071
1069
1072
1070
1073
<h4 id="short-para-initial-letter">
@@ -1108,7 +1111,7 @@ Interaction with floats</h4>
1108
1111
Floats always clear an initial letter when floated to the same side.
1109
1112
When floated to the opposite side,
1110
1113
they are pushed down to clear the initial letter
1111
-
only if they have specified 'clear' to this side
1114
+
only if they have specified 'clear' to the affected side
1112
1115
or they do not fit without overlapping the initial letter.
1113
1116
1114
1117
Issue: Is this the behavior we want? What if the float is on the same line as the initial letter?
Editor: L. David Baron, Mozilla, http://dbaron.org/
11
+
Editor: L. David Baron, Mozilla https://www.mozilla.org/, https://dbaron.org/
12
12
Editor: Florian Rivoal, On behalf of Bloomberg, florian@rivoal.net, http://florian.rivoal.net/
13
13
Abstract: This module contains the features of CSS relating to new mechanisms of overflow handling in visual media (e.g., screen or paper). In interactive media, it describes features that allow the overflow from a fixed size container to be handled by pagination (displaying one page at a time). It also describes features, applying to all visual media, that allow the contents of an element to be spread across multiple fragments, allowing the contents to flow across multiple regions or to have different styles for different fragments.
14
14
!Change Log: <a href="https://hg.csswg.org/drafts/log/tip/css-overflow/Overview.bs">from 27 January 2015 to the present</a>
0 commit comments