Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-lists/nested-marker.html - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<title>::marker pseudo-elements generated by ::before and ::after are not addressable by global selectors</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="match" href="nested-marker-ref.html">
<style>
  ::marker {
    color: red;
  }
  li::marker {
    color: blue;
  }
  li::before, li::after {
    display: list-item;
    content: "Before";
  }
  li::after {
    content: "After";
  }
</style>
<ol>
  <li>Foo
  <li>Bar