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 nested pseudo-elements #38680

Merged
merged 3 commits into from
Apr 3, 2025

Conversation

chrisdavidmills
Copy link
Contributor

Description

Chrome has added support for styling nested pseudo-elements, beginning in version 135 with ::after::marker and ::before::marker. See https://chromestatus.com/feature/5199947786616832.

This PR:

  • Adds a section to the main pseudo-elements reference page that explains nested pseudo-elements and provides a place to list all the supported ones.
  • Adds a basic demo to the ::before and ::after pages to show the nested pseudo-elements in action.

Note: Unless I've missed something, there doesn't seem to be a really obvious use case for these two nested pseudos — it seems like they are just part of setting up the system for more useful things to come in the future, like carousel/fragmentation (see https://github.com/flackr/carousel/tree/main/fragmentation)

Motivation

Additional details

Related issues and pull requests

@chrisdavidmills chrisdavidmills requested a review from a team as a code owner March 17, 2025 13:25
@chrisdavidmills chrisdavidmills requested review from dipikabh and removed request for a team March 17, 2025 13:25
@github-actions github-actions bot added the Content:CSS Cascading Style Sheets docs label Mar 17, 2025
@chrisdavidmills chrisdavidmills changed the title Document nested pseudo-elements Technical review: Document nested pseudo-elements Mar 17, 2025
@github-actions github-actions bot added the size/m [PR only] 51-500 LoC changed label Mar 17, 2025
Copy link
Contributor

github-actions bot commented Mar 17, 2025

Preview URLs

External URLs (2)

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


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

(comment last updated: 2025-04-03 07:10:40)

@chrisdavidmills chrisdavidmills changed the title Technical review: Document nested pseudo-elements Editorial review: Document nested pseudo-elements Apr 1, 2025
Copy link
Contributor

@dipikabh dipikabh left a comment

Choose a reason for hiding this comment

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

Hi @chrisdavidmills, thank you for your work on documenting this feature!

I've left some comments and suggestions – mostly around clarity and structure. Curious to hear what you think.

I'd be happy to help with/take up improvements to the existing content in a follow-up PR.

#### Result

{{EmbedLiveSample('Styling `::before::marker` nested pseudo-elements', 450, 200)}}

Copy link
Contributor

Choose a reason for hiding this comment

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

would be nice to add some quick explanation of the result.

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 added an explanation in the intro for each demo. Let me know if you think some of it should be moved to the result.

Copy link
Contributor

Choose a reason for hiding this comment

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

Thank you! That explanation is perfect just before the code demos.

One thing we can add after the result is to say that while the bullet markers of "Intro...Understanding" are generated because they are list items <li> but start and end have been inserted by the use of pseudo-elements and ::marker is used to style their bullets – I think this would solidify the example.

@chrisdavidmills chrisdavidmills requested a review from dipikabh April 2, 2025 16:06
Copy link
Contributor

@dipikabh dipikabh left a comment

Choose a reason for hiding this comment

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

This is looking much better now – thanks for the quick turnaround!
Just a few more open comments/suggestions. Unblocking with a +1, so feel free to merge after those last bits are in.

Comment on lines 163 to 166
- {{CSSxRef("::after")}}
- `::after::marker`: Selects the {{CSSxRef("::marker")}} pseudo-element of an `::after` pseudo-element, when `::after` is styled as a list item {{CSSxRef("display", "display: list-item")}}.
- {{CSSxRef("::before")}}
- `::before::marker`: Selects the {{CSSxRef("::marker")}} pseudo-element of a `::before` pseudo-element, when `::before` is styled as a list item {{CSSxRef("display", "display: list-item")}}.
Copy link
Contributor

Choose a reason for hiding this comment

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

either needs a comma like: "...is styled as a list item, {{CSSxRef("display", "display: list-item")}}."

or can be made more direct like: "...is styled with {{CSSxRef("display", "display: list-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.

done


The `::before::marker` [nested pseudo-element](/en-US/docs/Web/CSS/Pseudo-elements#nesting_pseudo-elements) selects the list {{CSSxRef("::marker")}} of an `::after` pseudo-element that is itself a list item, that is, it has its {{CSSxRef("display")}} property set to `list-item`.

In this demo, we generate before and after markers for a list navigation menu using `::before` and `::after`, setting them to `display: list-item` so they behave like list items. We then use `ul::before::marker` and `ul::after::marker` to color their list markers a different color.
Copy link
Contributor

Choose a reason for hiding this comment

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

I'd tweak this slightly. Instead of saying "before and after markers", might be clearer to say items before and after the list..

Suggested change
In this demo, we generate before and after markers for a list navigation menu using `::before` and `::after`, setting them to `display: list-item` so they behave like list items. We then use `ul::before::marker` and `ul::after::marker` to color their list markers a different color.
In this demo, we generate extra items before and after the list navigation menu using `::before` and `::after`, setting them to `display: list-item` so they behave like list items. We then use `ul::before::marker` and `ul::after::marker` to color their list markers a different color.

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

#### Result

{{EmbedLiveSample('Styling `::before::marker` nested pseudo-elements', 450, 200)}}

Copy link
Contributor

Choose a reason for hiding this comment

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

Thank you! That explanation is perfect just before the code demos.

One thing we can add after the result is to say that while the bullet markers of "Intro...Understanding" are generated because they are list items <li> but start and end have been inserted by the use of pseudo-elements and ::marker is used to style their bullets – I think this would solidify the example.

Comment on lines 238 to 242
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
Copy link
Contributor

Choose a reason for hiding this comment

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

you'd expect "Table of contents" to link to a table of contents

Of course!! So that won't be a good option here.

What about using a heading? Like "Contents". It wouldn't need a link. And styling it with a transparent bullet:

ul::before::marker,
ul::after::marker {
  color: transparent;
}

Can't come up with any replacement for end :)) I actually looked at some hard copy books just now.

  Contents
- Introduction
- Getting started
- Understanding the basics
  End

@chrisdavidmills chrisdavidmills merged commit e15d9ba into mdn:main Apr 3, 2025
8 checks passed
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/m [PR only] 51-500 LoC changed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants