Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-overflow/scroll-marker-011.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>::scroll-marker in inline formatting context</title>
<link rel="match" href="scroll-marker-011-ref.html">
<style>
  * {
    font-family: monospace;
  }
  .scroller {
    overflow: hidden;
    scroll-marker-group: before;
  }
  .scroller::scroll-marker-group {
    display: block;
    height: 2em;
    overflow: hidden;
  }
  .scroller>*::scroll-marker {
    content: attr(text);
  }
</style>
<p>The word "PASS" should be seen below.</p>
<div class="scroller">
  <div text="P"></div>
  <div text="A"></div>
  <div text="S"></div>
  <div text="S"></div>
</div>