Skip to content

Commit 5993d4a

Browse files
authored
33989 remove support for a j tracks (#34281)
* removed a-tracks & j-tracks pages and references from the masonry layout page * removed the references to a-tracks & j-tracks from other pages
1 parent a229786 commit 5993d4a

File tree

8 files changed

+3
-199
lines changed

8 files changed

+3
-199
lines changed

files/en-us/_redirects.txt

+2
Original file line numberDiff line numberDiff line change
@@ -11558,6 +11558,7 @@
1155811558
/en-US/docs/Web/CSS/_image /en-US/docs/Web/CSS/image/image
1155911559
/en-US/docs/Web/CSS/abs() /en-US/docs/Web/CSS/abs
1156011560
/en-US/docs/Web/CSS/additive-symbols /en-US/docs/Web/CSS/@counter-style/additive-symbols
11561+
/en-US/docs/Web/CSS/align-tracks /en-US/docs/Web/CSS/CSS_grid_layout/Masonry_layout
1156111562
/en-US/docs/Web/CSS/attr() /en-US/docs/Web/CSS/attr
1156211563
/en-US/docs/Web/CSS/auto /en-US/docs/Web/CSS/width
1156311564
/en-US/docs/Web/CSS/basic-shape/circle() /en-US/docs/Web/CSS/basic-shape/circle
@@ -11645,6 +11646,7 @@
1164511646
/en-US/docs/Web/CSS/image/paint() /en-US/docs/Web/CSS/image/paint
1164611647
/en-US/docs/Web/CSS/imagefunction /en-US/docs/Web/CSS/image/image
1164711648
/en-US/docs/Web/CSS/inherited_and_non-inherited_properties /en-US/docs/Web/CSS/Inheritance
11649+
/en-US/docs/Web/CSS/justify-tracks /en-US/docs/Web/CSS/CSS_grid_layout/Masonry_layout
1164811650
/en-US/docs/Web/CSS/kerning /en-US/docs/Web/CSS/font-kerning
1164911651
/en-US/docs/Web/CSS/lighting-color /en-US/docs/Web/SVG/Attribute/lighting-color
1165011652
/en-US/docs/Web/CSS/linear-gradient /en-US/docs/Web/CSS/gradient/linear-gradient

files/en-us/_wikihistory.json

-8
Original file line numberDiff line numberDiff line change
@@ -79531,10 +79531,6 @@
7953179531
"scottrowe"
7953279532
]
7953379533
},
79534-
"Web/CSS/align-tracks": {
79535-
"modified": "2020-11-12T04:51:22.504Z",
79536-
"contributors": ["rachelandrew", "chrisdavidmills"]
79537-
},
7953879534
"Web/CSS/all": {
7953979535
"modified": "2020-10-15T21:25:07.229Z",
7954079536
"contributors": [
@@ -86193,10 +86189,6 @@
8619386189
"teoli"
8619486190
]
8619586191
},
86196-
"Web/CSS/justify-tracks": {
86197-
"modified": "2020-11-12T04:51:57.763Z",
86198-
"contributors": ["rachelandrew", "chrisdavidmills"]
86199-
},
8620086192
"Web/CSS/left": {
8620186193
"modified": "2020-10-15T21:06:18.645Z",
8620286194
"contributors": [

files/en-us/glossary/alignment_container/index.md

-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@ The **alignment container** is the rectangle that the {{glossary("alignment subj
1515
- CSS {{CSSXref("align-content")}} property
1616
- CSS {{CSSXref("align-items")}} property
1717
- CSS {{CSSXref("align-self")}} property
18-
- CSS {{CSSXref("align-tracks")}} property
1918
- CSS {{CSSXref("justify-content")}} property
2019
- CSS {{CSSXref("justify-items")}} property
2120
- CSS {{CSSXref("justify-self")}} property
22-
- CSS {{CSSXref("justify-tracks")}} property
2321
- CSS {{CSSXref("place-content")}} shorthand property
2422
- CSS {{CSSXref("place-self")}} shorthand property
2523
- CSS {{CSSXref("scroll-snap-align")}} property

files/en-us/web/css/align-tracks/index.md

-82
This file was deleted.

files/en-us/web/css/css_grid_layout/index.md

-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ The example below shows a three-column track grid with new rows created at a min
107107
- {{CSSxRef("column-gap")}}
108108
- {{CSSxRef("gap")}}
109109
- {{CSSxRef("masonry-auto-flow")}}
110-
- {{CSSxRef("align-tracks")}}
111-
- {{CSSxRef("justify-tracks")}}
112110

113111
### Functions
114112

files/en-us/web/css/css_grid_layout/masonry_layout/index.md

+1-19
Original file line numberDiff line numberDiff line change
@@ -50,30 +50,12 @@ This example includes an item which has positioning for columns. Items with defi
5050

5151
{{EmbedGHLiveSample("css-examples/grid/masonry/positioned.html", '100%', 1000)}}
5252

53-
## Controlling the masonry axis
54-
55-
The masonry axis operates under different rules as it is following the masonry layout rules rather than normal grid auto-placement rules. To control this axis we have three additional properties defined in the Grid Level 3 specification {{cssxref("align-tracks")}}, {{cssxref("justify-tracks")}}, and {{cssxref("masonry-auto-flow")}}.
56-
57-
### masonry-auto-flow
53+
## masonry-auto-flow
5854

5955
The `masonry-auto-flow` property gives you a way to change how the masonry algorithm behaves. Give it a value of `next` and items will display in order on the grid axis, rather than going into whichever track has the most free space. The value `positioned` will ignore items with definite placement and place items in order-modified document order.
6056

6157
{{EmbedGHLiveSample("css-examples/grid/masonry/masonry-auto-flow.html", '100%', 1000)}}
6258

63-
### align-tracks
64-
65-
The `align-tracks` property allows for the alignment of items in grid containers with masonry in their block axis. The property aligns the items within their track, much in the way flex layout works. The property takes the same values as `align-content`, however you can specify multiple values to have different alignment values per track on the grid axis.
66-
67-
If you specify more values than tracks the additional values are ignored. If there are more tracks than values any additional tracks will use the last specified value.
68-
69-
{{EmbedGHLiveSample("css-examples/grid/masonry/align-tracks.html", '100%', 1000)}}
70-
71-
### justify-tracks
72-
73-
The `justify-tracks` property works in the same way as align-tracks, however it is used when the masonry axis is the inline axis.
74-
75-
{{EmbedGHLiveSample("css-examples/grid/masonry/justify-tracks.html", '100%', 1000)}}
76-
7759
## Fallback
7860

7961
In browsers [that do not support masonry](#browser_compatibility), regular grid auto-placement will be used instead.

files/en-us/web/css/justify-tracks/index.md

-82
This file was deleted.

files/en-us/web/css/masonry-auto-flow/index.md

-4
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,3 @@ selectElem.addEventListener("change", changeMasonryFlow);
136136
## Browser compatibility
137137

138138
{{Compat}}
139-
140-
## See also
141-
142-
- Related CSS properties: {{cssxref("align-tracks")}}, {{cssxref("justify-tracks")}}

0 commit comments

Comments
 (0)