Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<title>CSS Overflow Reference: dynamic setting of scroll-target-group with inline scroll targets</title>
<style>
.stg {
scroll-target-group: auto;
.target-current {
color: green;
}
}
#scroller {
height: 100px;
overflow: auto;
}
</style>
<div id="group" class="stg">
<a href="#a">a</a>
<a href="#b" class="target-current">b</a>
</div>
<div id="scroller">
<a id="a">aa</a>
<div style="height: 200px;"></div>
<a id="b">bb</a>
<div style="height: 200px;"></div>
</div>
<script>
scroller.scrollTop = 200;
</script>