blob: dae4f7b7e8d1e13517916aa2753053e884b4d4c3 [file] [log] [blame]
<style>
#scroller {
outline: 5px solid rgba(0, 255, 0, 0.6);
outline-offset: -4px;
overflow: scroll;
width: 200px;
height: 200px;
box-sizing: border-box;
will-change: transform;
}
.spacer {
width: 300px;
height: 300px;
}
</style>
<!-- #scroller outline should not be covered up by scrolling content background.
It is achieved by painting the outline into the decoration layer which draws
on top of all other layers. -->
<div id="scroller">
<div class="spacer"></div>
</div>