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-004.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Test: scroll container with ::scroll-marker-group after between other blocks</title>
<link rel="match" href="scroll-marker-004-ref.html">
<style>
#scroller {
width: 600px;
height: 300px;
overflow: scroll;
scroll-marker-group: after;
}
#scroller div {
width: 600px;
height: 300px;
margin-bottom: 20px;
background: green;
}
#scroller::scroll-marker-group {
border: 3px solid black;
padding: 5px;
display: flex;
height: 40px;
}
#scroller div::scroll-marker {
content: "";
width: 10px;
height: 10px;
background-color: blue;
border-radius: 100%;
}
#scroller #first::scroll-marker {
background-color: purple;
margin-right: 4px;
}
</style>
<div>TEST BLOCK BEFORE</div>
<div id="scroller">
<div id="first"></div>
<div></div>
</div>
<div>TEST BLOCK AFTER</div>