-
Notifications
You must be signed in to change notification settings - Fork 22.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Editorial review: Document CSS carousel functionality #38752
base: main
Are you sure you want to change the base?
Conversation
Preview URLs (14 pages)
Flaws (15)Note! 11 documents with no flaws that don't need to be listed. 🎉 URL:
URL:
URL:
External URLs (7)URL:
URL:
URL:
URL:
URL:
URL:
URL:
(comment last updated: 2025-04-02 13:36:34) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
excellent work as always!
left a few notes and some tips 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
I created a codepen for you. see https://codepen.io/estelle/pen/ByaOveM. it contains the steps to add in the order to add them for the guide to progress in a way that will make sense to people learning these features for the first time. |
This pull request has merge conflicts that must be resolved before it can be merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reviewed the guide.
|
||
### Column scroll markers | ||
|
||
The CSS for creating the scroll markers in the second example is nearly identical to the first example, except that the selectors are different — the scroll markers are created on the generated `::column` scroll markers rather than the list items. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"is similar to the flexbox full page example....
note that we are generating content on a pseudo-element to confirm that this is a normal thing to do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added a link to the previous code section, and reworded so it is not using second/first.
I'm not sure I need to call out generating content on a pseudo-element. This is a professional audience, and generating content on ::before/::after is a pretty common pattern.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes on generating on before and after, but this is generating something on another thing that is generated. The https://developer.mozilla.org/en-US/docs/Web/CSS/::after shows a pseudo class example, but not adding to a pseudo-element. a ::before on a ::first-letter (p::first-letter::after
) is not common. Content is only supported on tree-abiding pseudo-elements, not all pseudo elements, which is why i think we should point it out as many don't realize you can attach a pseudo to a pseudo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, I've added a bit to cover this.
The examples on the pages are way too complex. They all need to be narrowed down to highlight the feature of the page. |
I don't agree with you. Looking at your codepen suggestion, the only part that is a bit simpler is the anchor positioning stuff, and it still isn't particularly difficult to understand for a professional audience. |
include two examples per page. Keep most of your current examples as the second example, but on each page add a basic example, that demonstrates just the feature. edit: I replied to a few of your comments on my comments above. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Finished re-re-reviewing guide. Final pass through as all the changes are minor.
|
||
**Carousels** are a common feature on the web. They typically take the form of a scrolling content area containing several items, such as presentation slides, ads, headline news stories, or key product features. | ||
|
||
Users can move through the items by clicking or activating navigational buttons or by swiping. The navigation usually includes **scroll buttons**, generally "previous" and "next" buttons or links, and **scroll markers**, which are a series of button or link icons each representing one or more items depending on how many items are shown at each scroll position within the carousel. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Users can move through the items by clicking or activating navigational buttons or by swiping. The navigation usually includes **scroll buttons**, generally "previous" and "next" buttons or links, and **scroll markers**, which are a series of button or link icons each representing one or more items depending on how many items are shown at each scroll position within the carousel. | |
Users can move through the items by clicking or activating navigational buttons or by swiping. The navigation usually includes **scroll buttons**, generally "previous" and "next" buttons or links, and **scroll markers**, which are a series of button or link icons, each representing one or more items depending on how many items are shown at each scroll position within the carousel. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
|
||
 | ||
|
||
A key feature of carousels is **pagination** — the items feel like separate pieces of content that are moved between rather than forming one continuous section of content. You might show one item at a time or several items on each carousel "page". When several items are visible, you might show an entirely new group of items each time the "next" or "previous" button is pressed. Alternatively, you could add a single new item to one end of the list and move the item at the other end out of view. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A key feature of carousels is **pagination** — the items feel like separate pieces of content that are moved between rather than forming one continuous section of content. You might show one item at a time or several items on each carousel "page". When several items are visible, you might show an entirely new group of items each time the "next" or "previous" button is pressed. Alternatively, you could add a single new item to one end of the list and move the item at the other end out of view. | |
A key feature of carousels is **pagination** — the items feel like separate pieces of content that are moved between rather than forming one continuous section of content. You might show one item at a time or several items on each carousel "page". When several items are visible, you might show an entirely new group of items each time the "next" or "previous" button is pressed. Alternatively, you could add a single new item to one end of the list while moving the item at the other end out of view. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
|
||
A key feature of carousels is **pagination** — the items feel like separate pieces of content that are moved between rather than forming one continuous section of content. You might show one item at a time or several items on each carousel "page". When several items are visible, you might show an entirely new group of items each time the "next" or "previous" button is pressed. Alternatively, you could add a single new item to one end of the list and move the item at the other end out of view. | ||
|
||
Creating carousels with JavaScript can be quite brittle and challenging to implement. They require scripts to associate scroll markers with the items they represent and continuously update the scroll buttons to keep them operating correctly. When carousels are created using JavaScript, the accessibility of the carousel and the associated controls needs to be added in. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Creating carousels with JavaScript can be quite brittle and challenging to implement. They require scripts to associate scroll markers with the items they represent and continuously update the scroll buttons to keep them operating correctly. When carousels are created using JavaScript, the accessibility of the carousel and the associated controls needs to be added in. | |
Creating carousels with JavaScript can be quite brittle and challenging to implement. They require scripts to associate scroll markers with the items they represent and continuously update the scroll buttons to keep them operating correctly. When carousels are created using JavaScript, the accessibility of the carousel and the associated controls need to be added in. Fortunately, we can create accessible carousels with associated controls without the use of JavaScript. |
the "needs" needs to be updated.
The rest? Something like that, not necessarily those words. The paragraph needs something to tie it in
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated, with a couple of tweaks
|
||
In our first demo, we will create a carousel of single pages, with each item taking up the full page. We'll have [scroll markers](#creating_scroll_markers) as bottom navigation and [scroll buttons](#creating_scroll_buttons) on the sides of the page, enabling the user to move to the next and previous pages. | ||
|
||
[Flexbox](/en-US/docs/Web/CSS/CSS_flexible_box_layout) is used for the general layout of the carousel, [CSS scroll snap](/en-US/docs/Web/CSS/CSS_scroll_snap) is used to enforce clear pagination, and [CSS anchor positioning](/en-US/docs/Web/CSS/CSS_anchor_positioning) is used to position the scroll markers and scroll buttons relative to the carousel. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The previous paragraph is future tense, and this is current tense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
|
||
### Carousel layout with flexbox | ||
|
||
We use [flexbox](/en-US/docs/Web/CSS/CSS_flexible_box_layout) on the `<ul>` container and `<li>` children to create a single row of items, forcing the child list items to display horizontally with each item taking up the full width of the carousel. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use [flexbox](/en-US/docs/Web/CSS/CSS_flexible_box_layout) on the `<ul>` container and `<li>` children to create a single row of items, forcing the child list items to display horizontally with each item taking up the full width of the carousel. | |
We use [flexbox](/en-US/docs/Web/CSS/CSS_flexible_box_layout) to create a single row of items; the `<ul>` is the flex container, and the `<li>` child list items are displayed horizontally with each item taking up the full width of the carousel. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
|
||
The second demo creates a carousel with multiple items per page, which again includes [scroll buttons](#creating_scroll_buttons) and [scroll markers](#creating_scroll_markers) for navigating through the pages. The demo is also responsive — different numbers of items appear on each page depending on the viewport width. | ||
|
||
This demo is very similar to the [Carousel with single pages](#carousel_with_single_pages) demo, except that instead of using flexbox for layout, it uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout) and the {{cssxref("::column")}} pseudo-element to create arbitary columns that span the full width of the carousel and contain multiple items. In this case, the scroll markers are created per-column rather than per-item. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This demo is very similar to the [Carousel with single pages](#carousel_with_single_pages) demo, except that instead of using flexbox for layout, it uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout) and the {{cssxref("::column")}} pseudo-element to create arbitary columns that span the full width of the carousel and contain multiple items. In this case, the scroll markers are created per-column rather than per-item. | |
This demo is very similar to the [Carousel with single pages](#carousel_with_single_pages) demo, except that instead of using flexbox for layout, it uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout) and the {{cssxref("::column")}} pseudo-element to create arbitary columns that span the full width of the carousel and may contain multiple items. In this case, the scroll markers are created per-column rather than per-item. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
|
||
### Carousel layout using columns | ||
|
||
This example uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout), rather than flexbox, to layout the carousel items. The {{cssxref("columns")}} value of `1` forces its contents to display as a single column. A {{cssxref("text-align")}} value of `center` is also applied, forcing the contents to align with the center of the list. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This example uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout), rather than flexbox, to layout the carousel items. The {{cssxref("columns")}} value of `1` forces its contents to display as a single column. A {{cssxref("text-align")}} value of `center` is also applied, forcing the contents to align with the center of the list. | |
This example uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout), rather than flexbox, to layout the carousel items. The {{cssxref("columns")}} value of `1` forces each column to be the full width of the container, with the contents displaying a single column at a time. A {{cssxref("text-align")}} value of `center` is also applied, forcing the contents to align with the center of the list. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
} | ||
``` | ||
|
||
We provide rudimentary box styling for the list items, with multiple items fitting into the single content column (as previously defined using the `columns` property); the number dynamically changes as the list gets wider or narrower. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We provide rudimentary box styling for the list items, with multiple items fitting into the single content column (as previously defined using the `columns` property); the number dynamically changes as the list gets wider or narrower. | |
We provide rudimentary box styling for the list items, with multiple items fitting into the single content column if the container is wider than it is tall; the number dynamically changes as the list gets wider or narrower. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
|
||
The second demo creates a carousel with multiple items per page, which again includes [scroll buttons](#creating_scroll_buttons) and [scroll markers](#creating_scroll_markers) for navigating through the pages. The demo is also responsive — different numbers of items appear on each page depending on the viewport width. | ||
|
||
This demo is very similar to the [Carousel with single pages](#carousel_with_single_pages) demo, except that instead of using flexbox for layout, it uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout) and the {{cssxref("::column")}} pseudo-element to create arbitary columns that span the full width of the carousel and contain multiple items. In this case, the scroll markers are created per-column rather than per-item. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This demo is very similar to the [Carousel with single pages](#carousel_with_single_pages) demo, except that instead of using flexbox for layout, it uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout) and the {{cssxref("::column")}} pseudo-element to create arbitary columns that span the full width of the carousel and contain multiple items. In this case, the scroll markers are created per-column rather than per-item. | |
This demo is very similar to the [Carousel with single pages](#carousel_with_single_pages) demo, except that instead of using flexbox for layout, it uses [CSS multi-column layout](/en-US/docs/Web/CSS/CSS_multicol_layout) and the {{cssxref("::column")}} pseudo-element to create arbitary columns that span the full width of the carousel and contain multiple items. In this way, we can be sure that if the viewport grows or shrinks, while the items size remains constant, we'll never have a partial item displayed of the edge of the scrollport. In this case, the scroll markers are created per-column rather than per-item. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added
The key properties are as follows: | ||
|
||
- A {{cssxref("display")}} value of `inline-block` has been set to force the list items to sit alongside one another and make the list scroll horizontally. | ||
- A fixed {{cssxref("aspect-ratio")}} of `3/4` has been set on them, to control their sizing as the list size changes, but keep their width constant while the height of the list stays constant. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- A fixed {{cssxref("aspect-ratio")}} of `3/4` has been set on them, to control their sizing as the list size changes, but keep their width constant while the height of the list stays constant. | |
- A fixed {{cssxref("aspect-ratio")}} of `3/4` has been set on them, to control their sizing as the list size changes, but keep their width constant as the height of the list is constant. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
@estelle ok, I understand what you mean now. I thought you were talking about the examples in the guide. I will cut them down, and only include the feature directly relevant to that pseudo-element (or whatever). I don't think we need 2 examples per page — we can show one basic example and then link to the guide for complete examples. |
Description
Chrome 135 supports the new CSS carousel functionality — see the following ChromeStatus entries:
This PR aims to document all the new functionality. Specifically, it adds:
::scroll-button()
ref pagescroll-marker-group
ref page::scroll-marker-group
ref page::scroll-marker
ref page:target-current
ref page::column
ref pageMotivation
Additional details
Related issues and pull requests