blob: 93e8a0dc495a6d0ff0677b13f09eca6a382c2280 [file] [log] [blame]
<style>
div {
background-color: yellow;
height: 500px;
width: 100px;
}
</style>
<div></div>
<button id="btn">Click</button>
<div></div>
<script>
document.getElementById("btn").scrollIntoView();
document.getElementById("btn").scrollIntoView();
</script>