Skip to content

Commit e6501a6

Browse files
committed
Fix links
1 parent 2504748 commit e6501a6

2 files changed

Lines changed: 18 additions & 19 deletions

File tree

css3-flexbox/Overview.html

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -832,8 +832,8 @@ <h2 id=box-model><span class=secno>2. </span> Flex Layout Box Model and
832832

833833
<h2 id=flex-containers><span class=secno>3. </span> Flex Containers: the <a
834834
href="#display-flex"><code class=css>flex</code></a> and <a
835-
href="#display-inline-flex"><code class=css>inline-flex</code>
836-
<code class=property>display</code>’ values</a></h2>
835+
href="#display-inline-flex"><code class=css>inline-flex</code></a>
836+
<code class=property>display</code>’ values</h2>
837837

838838
<table class=propdef>
839839
<tbody>
@@ -1390,11 +1390,10 @@ <h3 id=flex-direction-property><span class=secno>5.1. </span> Flex Flow
13901390
of the current <i>writing mode</i>. The <a
13911391
href="#main-start"><i>main-start</i></a> and <a
13921392
href="#main-end"><i>main-end</i></a> directions are equivalent to the <a
1393-
href="http://www.w3.org/TR/css3-writing-modes/#before">before</a>/<a
1394-
href="http://www.w3.org/TR/css3-writing-modes/#head">head</a> and <a
1395-
href="http://www.w3.org/TR/css3-writing-modes/#after">after</a>/<a
1396-
href="http://www.w3.org/TR/css3-writing-modes/#foot">foot</a> directions,
1397-
respectively, of the current <i>writing mode</i>.
1393+
href="http://www.w3.org/TR/css3-writing-modes/#before">before</a>/head
1394+
and <a
1395+
href="http://www.w3.org/TR/css3-writing-modes/#after">after</a>/foot
1396+
directions, respectively, of the current <i>writing mode</i>.
13981397

13991398
<dt><dfn id=flex-flow-column-reverse><code
14001399
class=css>column-reverse</code></dfn>
@@ -1783,10 +1782,10 @@ <h4 id=order-accessibility><span class=secno>5.4.1. </span>Reordering and
17831782
#main > aside { width: 200px; order: 3; }</pre>
17841783

17851784
<p> As an added bonus, the columns will all be <a
1786-
href="#align-items-stretch">equal-height</a> by default, and the main
1787-
content will be as wide as necessary to fill the screen. Additionally,
1788-
this can then be combined with media queries to switch to an all-vertical
1789-
layout on narrow screens:
1785+
href="#align-stretch">equal-height</a> by default, and the main content
1786+
will be as wide as necessary to fill the screen. Additionally, this can
1787+
then be combined with media queries to switch to an all-vertical layout
1788+
on narrow screens:
17901789

17911790
<pre>
17921791
@media all and (max-width: 600px) {
@@ -2882,7 +2881,7 @@ <h3 id=align-content-property><span class=secno>8.4. </span> Packing Flex
28822881
<dd> Lines are evenly distributed in the flex container. If the leftover
28832882
free-space is negative or there is only a single line in the flex
28842883
container, this value is identical to <a
2885-
href=align-content-flex-start><code
2884+
href="#align-content-flex-start"><code
28862885
class=css>flex-start</code></a>. Otherwise, the <a
28872886
href="#cross-start"><i>cross-start</i></a> edge of the first line in the
28882887
flex container is placed flush with the <a
@@ -2899,7 +2898,7 @@ <h3 id=align-content-property><span class=secno>8.4. </span> Packing Flex
28992898
<dd> Lines are evenly distributed in the flex container, with half-size
29002899
spaces on either end. If the leftover free-space is negative or there is
29012900
only a single line in the flex container, this value is identical to <a
2902-
href=align-content-center><code class=css>center</code></a>.
2901+
href="#align-content-center"><code class=css>center</code></a>.
29032902
Otherwise, the lines in the flex container are distributed such that the
29042903
empty space between any two adjacent lines is the same, and the empty
29052904
space before the first and after the last lines in the flex container are

css3-flexbox/Overview.src.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ <h2 id='box-model'>
523523
</dl>
524524

525525
<h2 id='flex-containers'>
526-
Flex Containers: the <a href="#display-flex">''flex''</a> and <a href="#display-inline-flex">''inline-flex'' 'display' values</h2>
526+
Flex Containers: the <a href="#display-flex">''flex''</a> and <a href="#display-inline-flex">''inline-flex''</a> 'display' values</h2>
527527

528528
<table class="propdef">
529529
<tr>
@@ -1000,8 +1000,8 @@ <h3 id='flex-direction-property'>
10001000
<a href="http://www.w3.org/TR/css3-writing-modes/#block-axis">block axis</a>
10011001
of the current <i>writing mode</i>.
10021002
The <i>main-start</i> and <i>main-end</i> directions are equivalent to the
1003-
<a href="http://www.w3.org/TR/css3-writing-modes/#before">before</a>/<a href="http://www.w3.org/TR/css3-writing-modes/#head">head</a> and
1004-
<a href="http://www.w3.org/TR/css3-writing-modes/#after">after</a>/<a href="http://www.w3.org/TR/css3-writing-modes/#foot">foot</a> directions, respectively,
1003+
<a href="http://www.w3.org/TR/css3-writing-modes/#before">before</a>/head and
1004+
<a href="http://www.w3.org/TR/css3-writing-modes/#after">after</a>/foot directions, respectively,
10051005
of the current <i>writing mode</i>.
10061006

10071007
<dt><dfn id='flex-flow-column-reverse'>''column-reverse''</dfn>
@@ -1289,7 +1289,7 @@ <h4 id="order-accessibility">Reordering and Accessibility</h4>
12891289

12901290
<p>
12911291
As an added bonus,
1292-
the columns will all be <a href="#align-items-stretch">equal-height</a> by default,
1292+
the columns will all be <a href="#align-stretch">equal-height</a> by default,
12931293
and the main content will be as wide as necessary to fill the screen.
12941294
Additionally,
12951295
this can then be combined with media queries to switch to an all-vertical layout on narrow screens:
@@ -2147,7 +2147,7 @@ <h3 id='align-content-property'>
21472147
Lines are evenly distributed in the flex container.
21482148
If the leftover free-space is negative
21492149
or there is only a single line in the flex container,
2150-
this value is identical to <a href="align-content-flex-start">''flex-start''</a>.
2150+
this value is identical to <a href="#align-content-flex-start">''flex-start''</a>.
21512151
Otherwise,
21522152
the <i>cross-start</i> edge of the first line in the flex container
21532153
is placed flush with the <i>cross-start</i> content edge of the flex container,
@@ -2162,7 +2162,7 @@ <h3 id='align-content-property'>
21622162
with half-size spaces on either end.
21632163
If the leftover free-space is negative
21642164
or there is only a single line in the flex container,
2165-
this value is identical to <a href="align-content-center">''center''</a>.
2165+
this value is identical to <a href="#align-content-center">''center''</a>.
21662166
Otherwise, the lines in the flex container are distributed
21672167
such that the empty space between any two adjacent lines is the same,
21682168
and the empty space before the first and after the last lines in the flex container

0 commit comments

Comments
 (0)