Skip to content

Commit f39789d

Browse files
committed
CSS properties: convert links to macros (part 3)
1 parent fd4cf67 commit f39789d

File tree

20 files changed

+42
-42
lines changed

20 files changed

+42
-42
lines changed

files/en-us/web/css/reference/properties/grid-area/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ The `grid-area` property can also be set to a {{cssxref("<custom-ident>")}
7373

7474
This property is a shorthand for the following CSS properties:
7575

76-
- [`grid-row-start`](/en-US/docs/Web/CSS/Reference/Properties/grid-row-start)
77-
- [`grid-column-start`](/en-US/docs/Web/CSS/Reference/Properties/grid-column-start)
78-
- [`grid-row-end`](/en-US/docs/Web/CSS/Reference/Properties/grid-row-end)
79-
- [`grid-column-end`](/en-US/docs/Web/CSS/Reference/Properties/grid-column-end)
76+
- {{cssxref("grid-row-start")}}
77+
- {{cssxref("grid-column-start")}}
78+
- {{cssxref("grid-row-end")}}
79+
- {{cssxref("grid-column-end")}}
8080

8181
## Syntax
8282

files/en-us/web/css/reference/properties/grid-column/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ grid-column: 1 / span 2;
6161

6262
This property is a shorthand for the following CSS properties:
6363

64-
- [`grid-column-end`](/en-US/docs/Web/CSS/Reference/Properties/grid-column-end)
65-
- [`grid-column-start`](/en-US/docs/Web/CSS/Reference/Properties/grid-column-start)
64+
- {{cssxref("grid-column-end")}}
65+
- {{cssxref("grid-column-start")}}
6666

6767
## Syntax
6868

files/en-us/web/css/reference/properties/grid-row/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ grid-row: 1 / span 2;
6161

6262
This property is a shorthand for the following CSS properties:
6363

64-
- [`grid-row-end`](/en-US/docs/Web/CSS/Reference/Properties/grid-row-end)
65-
- [`grid-row-start`](/en-US/docs/Web/CSS/Reference/Properties/grid-row-start)
64+
- {{cssxref("grid-row-end")}}
65+
- {{cssxref("grid-row-start")}}
6666

6767
## Syntax
6868

files/en-us/web/css/reference/properties/grid-template-columns/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ grid-template-columns: unset;
9797
- `none`
9898
- : Indicates that there is no explicit grid. Any columns will be implicitly generated and their size will be determined by the {{cssxref("grid-auto-columns")}} property.
9999
- `[line-name]`
100-
- : A [`<custom-ident>`](/en-US/docs/Web/CSS/Reference/Values/custom-ident) specifying a name for the line in that location. The ident may be any valid string other than the reserved words `span` and `auto`. Lines may have multiple names separated by a space inside the square brackets, for example `[line-name-a line-name-b]`.
100+
- : A {{cssxref("&lt;custom-ident&gt;")}} specifying a name for the line in that location. The ident may be any valid string other than the reserved words `span` and `auto`. Lines may have multiple names separated by a space inside the square brackets, for example `[line-name-a line-name-b]`.
101101
- {{cssxref("&lt;length&gt;")}}
102102
- : A non-negative length, giving the width of the column.
103103
- {{cssxref("&lt;percentage&gt;")}}

files/en-us/web/css/reference/properties/grid-template-rows/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ This property may be specified as:
103103
- `none`
104104
- : A keyword meaning that there is no explicit grid. Any rows will be implicitly generated and their size will be determined by the {{cssxref("grid-auto-rows")}} property.
105105
- `[line-name]`
106-
- : A [`<custom-ident>`](/en-US/docs/Web/CSS/Reference/Values/custom-ident) specifying a name for the line in that location. The ident may be any valid string other than the reserved words `span` and `auto`. Lines may have multiple names separated by a space inside the square brackets, for example `[line-name-a line-name-b]`.
106+
- : A {{cssxref("&lt;custom-ident&gt;")}} specifying a name for the line in that location. The ident may be any valid string other than the reserved words `span` and `auto`. Lines may have multiple names separated by a space inside the square brackets, for example `[line-name-a line-name-b]`.
107107
- {{cssxref("&lt;length&gt;")}}
108108
- : A non-negative length.
109109
- {{cssxref("&lt;percentage&gt;")}}

files/en-us/web/css/reference/properties/grid-template/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ grid-template:
7474

7575
This property is a shorthand for the following CSS properties:
7676

77-
- [`grid-template-areas`](/en-US/docs/Web/CSS/Reference/Properties/grid-template-areas)
78-
- [`grid-template-columns`](/en-US/docs/Web/CSS/Reference/Properties/grid-template-columns)
79-
- [`grid-template-rows`](/en-US/docs/Web/CSS/Reference/Properties/grid-template-rows)
77+
- {{cssxref("grid-template-areas")}}
78+
- {{cssxref("grid-template-columns")}}
79+
- {{cssxref("grid-template-rows")}}
8080

8181
## Syntax
8282

files/en-us/web/css/reference/properties/grid/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ grid: repeat(3, 80px) / auto-flow;
7070

7171
This property is a shorthand for the following CSS properties:
7272

73-
- [`grid-auto-columns`](/en-US/docs/Web/CSS/Reference/Properties/grid-auto-columns)
74-
- [`grid-auto-flow`](/en-US/docs/Web/CSS/Reference/Properties/grid-auto-flow)
75-
- [`grid-auto-rows`](/en-US/docs/Web/CSS/Reference/Properties/grid-auto-rows)
76-
- [`grid-template-areas`](/en-US/docs/Web/CSS/Reference/Properties/grid-template-areas)
77-
- [`grid-template-columns`](/en-US/docs/Web/CSS/Reference/Properties/grid-template-columns)
78-
- [`grid-template-rows`](/en-US/docs/Web/CSS/Reference/Properties/grid-template-rows)
73+
- {{cssxref("grid-auto-columns")}}
74+
- {{cssxref("grid-auto-flow")}}
75+
- {{cssxref("grid-auto-rows")}}
76+
- {{cssxref("grid-template-areas")}}
77+
- {{cssxref("grid-template-columns")}}
78+
- {{cssxref("grid-template-rows")}}
7979

8080
## Syntax
8181

files/en-us/web/css/reference/properties/interpolate-size/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ sidebar: cssref
1010

1111
{{seecompattable}}
1212

13-
The **`interpolate-size`** [CSS](/en-US/docs/Web/CSS) property allows you to enable [animations](/en-US/docs/Web/CSS/Guides/Animations) and [transitions](/en-US/docs/Web/CSS/Guides/Transitions) between a [`<length-percentage>`](/en-US/docs/Web/CSS/Reference/Values/length-percentage) value and an [intrinsic size](/en-US/docs/Glossary/Intrinsic_Size) value such as `auto`, [`fit-content`](/en-US/docs/Web/CSS/Reference/Values/fit-content), or [`max-content`](/en-US/docs/Web/CSS/Reference/Values/max-content).
13+
The **`interpolate-size`** [CSS](/en-US/docs/Web/CSS) property allows you to enable [animations](/en-US/docs/Web/CSS/Guides/Animations) and [transitions](/en-US/docs/Web/CSS/Guides/Transitions) between a {{cssxref("&lt;length-percentage&gt;")}} value and an {{glossary("intrinsic size")}} value such as `auto`, {{cssxref("fit-content")}}, or {{cssxref("max-content")}}.
1414

1515
This property is typically used to animate the {{cssxref("width")}} and/or {{cssxref("height")}} of a container between a `<length-percentage>` and the full size of its content (i.e., between "closed" and "open" or "hide" and "reveal" states) when animating a non-box-model CSS property, such as {{cssxref("transform")}}, is not a viable solution.
1616

@@ -35,13 +35,13 @@ interpolate-size: unset;
3535
### Values
3636

3737
- `allow-keywords`
38-
- : Enables [interpolation](/en-US/docs/Glossary/Interpolation) between a [`<length-percentage>`](/en-US/docs/Web/CSS/Reference/Values/length-percentage) value and an intrinsic size value, to allow animation between the two.
38+
- : Enables [interpolation](/en-US/docs/Glossary/Interpolation) between a {{cssxref("&lt;length-percentage&gt;")}} value and an intrinsic size value, to allow animation between the two.
3939
- `numeric-only`
4040
- : The default behavior — intrinsic size values cannot be interpolated.
4141

4242
## Description
4343

44-
Setting `interpolate-size: allow-keywords` enables interpolation between a [`<length-percentage>`](/en-US/docs/Web/CSS/Reference/Values/length-percentage) value and an intrinsic size value. Note that it does not enable animating between two intrinsic size values. One end of the animation must be a `<length-percentage>`.
44+
Setting `interpolate-size: allow-keywords` enables interpolation between a {{cssxref("&lt;length-percentage&gt;")}} value and an intrinsic size value. Note that it does not enable animating between two intrinsic size values. One end of the animation must be a `<length-percentage>`.
4545

4646
The `interpolate-size` value is inherited, so animating to (or from) an intrinsic size value can be enabled for an entire document by setting it on the document root:
4747

files/en-us/web/css/reference/properties/justify-content/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ justify-content: unset;
119119
- : The items are packed flush to each other toward the right edge of the alignment container in the appropriate axis. If the property's axis is not parallel with the inline axis (in a grid container) or the main-axis (in a flexbox container), this value behaves like `start`.
120120

121121
- `normal`
122-
- : Behaves as `stretch`, except in the case of multi-column containers with a non-`auto` [`column-width`](/en-US/docs/Web/CSS/Reference/Properties/column-width), in which case the columns take their specified `column-width` rather than stretching to fill the container. As `stretch` behaves as `start` in flex containers, `normal` also behaves as `start`.
122+
- : Behaves as `stretch`, except in the case of multi-column containers with a non-`auto` {{cssxref("column-width")}}, in which case the columns take their specified `column-width` rather than stretching to fill the container. As `stretch` behaves as `start` in flex containers, `normal` also behaves as `start`.
123123

124124
- `space-between`
125125
- : The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The first item is flush with the main-start edge, and the last item is flush with the main-end edge.

files/en-us/web/css/reference/properties/list-style-image/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ ul {
138138

139139
### Using a gradient
140140

141-
This example has a [CSS gradient](/en-US/docs/Web/CSS/Guides/Images/Using_gradients) as a marker, which we create uses the {{cssxref("gradient/linear-gradient", "linear-gradient()")}} image function.
141+
This example has a [CSS gradient](/en-US/docs/Web/CSS/Guides/Images/Using_gradients) as a marker, which we create uses the {{cssxref("linear-gradient()")}} image function.
142142

143143
#### HTML
144144

0 commit comments

Comments
 (0)