Closed
Description
(Split from issue #3467, reported by @stefsullrew)
It appears the ::before
and ::after
pseudo elements/selectors do not function with ::part. Is this intentionally blocked, if so why? If not are there plans to add this functionality in the future?
// add an asterisk prefix to the title part
x-foo::part(title)::before {
content: '*';
color: red;
margin-right: 0.25rem;
}