Skip to content

Commit 1025c4a

Browse files
committed
[css-display-1] Update references.
1 parent ce3a244 commit 1025c4a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

css-display-3/Overview.bs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Introduction</h2>
9898
CSS first uses <a href="https://www.w3.org/TR/css-cascade/">cascading and inheritance</a>,
9999
to assign a <a>computed value</a> for each CSS property
100100
to each [=CSS/element=] and <a>text node</a> in the source tree.
101-
(See [[!CSS3-CASCADE]].)
101+
(See [[!CSS-CASCADE-3]].)
102102

103103
Then, for each [=CSS/element=],
104104
CSS generates zero or more <a>boxes</a>
@@ -180,7 +180,7 @@ Introduction</h2>
180180
(see <a href="https://www.w3.org/TR/css-multicol-1/#spanning-columns">CSS Multi-column Layout</a>).
181181
A <a>box</a> therefore consists of one or more <a>box fragments</a>,
182182
and a <a>text run</a> consists of one or more <a lt=fragment>text fragments</a>.
183-
See [[CSS3-BREAK]] for more information on <a>fragmentation</a>.
183+
See [[CSS-BREAK-3]] for more information on <a>fragmentation</a>.
184184

185185
Note: Many of the CSS specs were written before this terminology was ironed out,
186186
or refer to things incorrectly,
@@ -191,7 +191,7 @@ Introduction</h2>
191191

192192
Note: Further information on the “aural” box tree
193193
and its interaction with the 'display' property
194-
can be found in the <a href="https://www.w3.org/TR/css3-speech/#aural-model">CSS Speech Module</a>.
194+
can be found in the <a href="https://www.w3.org/TR/css-speech-1/#aural-model">CSS Speech Module</a>.
195195
[[!CSS-SPEECH-1]]
196196

197197
<h3 id="placement">
@@ -519,7 +519,7 @@ Inner Display Layout Models: the ''flow'', ''flow-root'', ''table'', ''flex'', '
519519
into its parent <a>formatting context</a>
520520
(if it is inline)
521521
or generating a wrapper box of the appropriate <a>outer display type</a>
522-
(if it is not). [[!CSS3RUBY]]
522+
(if it is not). [[!CSS-RUBY-1]]
523523
</dl>
524524

525525
If a <<display-inside>> value is specified but <<display-outside>> is omitted,
@@ -614,7 +614,7 @@ Layout-Internal Display Types: the ''table-*'' and ''ruby-*'' keywords</h3>
614614
<dd>
615615
The element is an <dfn dfn for>internal ruby element</dfn>.
616616
It generates the appropriate <dfn dfn for>internal ruby box</dfn>
617-
which participates in a <a>ruby formatting context</a>. [[!CSS3RUBY]]
617+
which participates in a <a>ruby formatting context</a>. [[!CSS-RUBY-1]]
618618

619619
''ruby-base'' and ''ruby-text'' have a ''flow'' <a>inner display type</a>.
620620
</dl>
@@ -846,8 +846,8 @@ Automatic Box Type Transformations</h3>
846846

847847
<ul>
848848
<li>Absolute positioning or floating an element <a>blockifies</a> the box’s display type. [[CSS2]]
849-
<li>Containment in a <a spec=css-ruby>ruby container</a> <a>inlinifies</a> the box’s display type, as described in [[CSS3RUBY]].
850-
<li>A parent with a ''grid'' or ''flex'' 'display' value <a>blockifies</a> the box’s display type. [[CSS-GRID-1]] [[CSS3-FLEXBOX]]
849+
<li>Containment in a <a spec=css-ruby>ruby container</a> <a>inlinifies</a> the box’s display type, as described in [[CSS-RUBY-1]].
850+
<li>A parent with a ''grid'' or ''flex'' 'display' value <a>blockifies</a> the box’s display type. [[CSS-GRID-1]] [[CSS-FLEXBOX-1]]
851851
</ul>
852852
</div>
853853

@@ -1007,7 +1007,7 @@ Display Order: the 'order' property</h2>
10071007
Reordering and Accessibility</h3>
10081008

10091009
The 'order' property <em>does not</em> affect ordering in non-visual media
1010-
(such as <a href="https://www.w3.org/TR/css3-speech/">speech</a>).
1010+
(such as <a href="https://www.w3.org/TR/css-speech-1/">speech</a>).
10111011
Likewise, 'order' does not affect
10121012
the default traversal order of sequential navigation modes
10131013
(such as cycling through links, see e.g. <a href="https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex"><code>tabindex</code></a> [[HTML]]).
@@ -1412,7 +1412,7 @@ Appendix A: Glossary</h2>
14121412
<dd>
14131413
The <a>containing block</a> of the root element.
14141414
See <a href="https://www.w3.org/TR/CSS2/visudet.html#containing-block-details">CSS2.1&sect;10.1</a> for [=continuous media=];
1415-
and [[!CSS3PAGE]] for [=paged media=].
1415+
and [[!CSS-PAGE-3]] for [=paged media=].
14161416

14171417
<dt><dfn>formatting context</dfn>
14181418
<dd>
@@ -1421,7 +1421,7 @@ Appendix A: Glossary</h2>
14211421
Different [=formatting contexts=] lay out their boxes
14221422
according to different rules.
14231423
For example, a <a>flex formatting context</a>
1424-
lays out boxes according to the <a>flex layout</a> rules [[CSS3-FLEXBOX]],
1424+
lays out boxes according to the <a>flex layout</a> rules [[CSS-FLEXBOX-1]],
14251425
whereas a <a>block formatting context</a>
14261426
lays out boxes according to the block-and-inline layout rules [[CSS2]].
14271427
Additionally, some types of [=formatting contexts=] interleave and co-exist:
@@ -1682,7 +1682,7 @@ SVG Elements {#unbox-svg}
16821682
are ignored when rendering the contents.
16831683
However, SVG [=presentation attributes=]--
16841684
which map to CSS properties--
1685-
continue to affect value processing and inheritance [[CSS3-CASCADE]];
1685+
continue to affect value processing and inheritance [[CSS-CASCADE-3]];
16861686
thus such attributes can affect
16871687
the layout and visual formatting of the element’s descendants
16881688
by influencing the values of such properties on those descendants.

0 commit comments

Comments
 (0)