Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-contain/contain-style-ol-ordinal-pseudo-reversed.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Containment: contain:style and <ol> ordinals (pseudo, reversed)</title>
<link rel="match" href="reference/contain-style-ol-ordinal-pseudo-reversed-ref.html">
<style>
  li::before, li::after { content: counter(list-item); }
</style>
<ol start=10 reversed>
  <li>A</li>
  <li>B</li>
  <div style="contain:style">
    <li>X</li>
    <li>Y</li>
  </div>
  <li>C</li>
  <li>D</li>
</ol>