Skip to content
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

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

chrisdavidmills
Copy link
Contributor

@chrisdavidmills chrisdavidmills commented Mar 21, 2025

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 page
  • scroll-marker-group ref page
  • ::scroll-marker-group ref page
  • ::scroll-marker ref page
  • :target-current ref page
  • ::column ref page
  • A guide showing how to use the features together to create CSS carousels
  • All the above features to the CSS overflow module landing page
  • The pseudo-classes and pseudo-elements to the pseudo-classes and pseudo-elements landing pages

Motivation

Additional details

Related issues and pull requests

@chrisdavidmills chrisdavidmills requested a review from a team as a code owner March 21, 2025 16:11
@chrisdavidmills chrisdavidmills requested review from estelle and removed request for a team March 21, 2025 16:11
@chrisdavidmills chrisdavidmills marked this pull request as draft March 21, 2025 16:11
@github-actions github-actions bot added Content:CSS Cascading Style Sheets docs size/l [PR only] 501-1000 LoC changed labels Mar 21, 2025
Copy link
Contributor

github-actions bot commented Mar 21, 2025

Preview URLs (14 pages)
Flaws (15)

Note! 11 documents with no flaws that don't need to be listed. 🎉

URL: /en-US/docs/Web/CSS/content
Title: content
Flaw count: 13

  • broken_links:
    • Can't resolve /en-US/docs/Web/CSS/declaration-value
    • Can't resolve /en-US/docs/Web/CSS/counter-name
    • Can't resolve /en-US/docs/Web/CSS/counter-name
    • Can't resolve /en-US/docs/Web/CSS/ident-token
    • Can't resolve /en-US/docs/Web/CSS/ident-token
    • and 6 more flaws omitted
  • macros:
    • Macro produces link /en-US/docs/Web/CSS/CSS_cascade/initial_value which is a redirect
    • Macro produces link /en-US/docs/Web/CSS/CSS_cascade/computed_value which is a redirect

URL: /en-US/docs/Web/CSS/CSS_generated_content
Title: CSS generated content
Flaw count: 1

  • broken_links:
    • /en-US/docs/Web/CSS/CSS_Overflow is ill cased

URL: /en-US/docs/Web/CSS/scroll-marker-group
Title: scroll-marker-group
Flaw count: 1

  • macros:
    • Can't resolve /en-US/docs/Web/CSS/interactivity
External URLs (7)

URL: /en-US/docs/Web/CSS/::column
Title: ::column


URL: /en-US/docs/Web/CSS/::scroll-button
Title: ::scroll-button()


URL: /en-US/docs/Web/CSS/::scroll-marker
Title: ::scroll-marker


URL: /en-US/docs/Web/CSS/::scroll-marker-group
Title: ::scroll-marker-group


URL: /en-US/docs/Web/CSS/:target-current
Title: :target-current


URL: /en-US/docs/Web/CSS/CSS_overflow/CSS_carousels
Title: Creating CSS carousels


URL: /en-US/docs/Web/CSS/scroll-marker-group
Title: scroll-marker-group

(comment last updated: 2025-04-02 13:36:34)

@github-actions github-actions bot added size/xl [PR only] >1000 LoC changed and removed size/l [PR only] 501-1000 LoC changed labels Mar 24, 2025
@chrisdavidmills chrisdavidmills marked this pull request as ready for review March 24, 2025 15:40
@chrisdavidmills chrisdavidmills changed the title Document CSS carousel functionality Technical review: Document CSS carousel functionality Mar 24, 2025
Copy link
Contributor

@argyleink argyleink left a 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 🙂

Copy link
Contributor

@argyleink argyleink left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@chrisdavidmills chrisdavidmills changed the title Technical review: Document CSS carousel functionality Editorial review: Document CSS carousel functionality Mar 26, 2025
estelle

This comment was marked as outdated.

@estelle
Copy link
Member

estelle commented Mar 28, 2025

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.

Copy link
Contributor

This pull request has merge conflicts that must be resolved before it can be merged.

@github-actions github-actions bot added the merge conflicts 🚧 [PR only] label Mar 28, 2025
@github-actions github-actions bot removed the merge conflicts 🚧 [PR only] label Mar 28, 2025
@chrisdavidmills chrisdavidmills requested a review from estelle April 1, 2025 10:56
Copy link
Member

@estelle estelle left a 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.
Copy link
Member

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

Copy link
Contributor Author

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.

Copy link
Member

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.

Copy link
Contributor Author

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.

@estelle
Copy link
Member

estelle commented Apr 2, 2025

We need the most basic possible example for the guide, and then we need to walk users through the enhancement from this is an scroll container that overflows to this is a basic carousel.

then we can add that basic example to each property page, then demonstrate updates to that feature only on each page, and link to the guide for the "to see how the rest of this demo worked".

The examples on the pages are way too complex. They all need to be narrowed down to highlight the feature of the page.

@chrisdavidmills
Copy link
Contributor Author

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.

@chrisdavidmills chrisdavidmills requested a review from estelle April 2, 2025 13:34
@estelle
Copy link
Member

estelle commented Apr 2, 2025

The examples on the pages are way too complex. They all need to be narrowed down to highlight the feature of the page.

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.
For example, the button examples don't need to include markers, and the marker pages don't need to include buttons, especially in the basic example.

edit: I replied to a few of your comments on my comments above.

Copy link
Member

@estelle estelle left a 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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated


![A carousel with a content area in the middle, previous and next buttons to the left and right, and scroll markers at the bottom](carousel.png)

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor Author

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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

Copy link
Contributor Author

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.
Copy link
Member

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.

Copy link
Contributor Author

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor Author

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor Author

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor Author

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor Author

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.

Copy link
Contributor Author

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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- 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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated

@chrisdavidmills
Copy link
Contributor Author

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.
For example, the button examples don't need to include markers, and the marker pages don't need to include buttons, especially in the basic example.

@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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Content:CSS Cascading Style Sheets docs size/xl [PR only] >1000 LoC changed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants