21 lines
425 B
HTML
21 lines
425 B
HTML
<!doctype html>
|
|
<html>
|
|
<style>
|
|
#wrapper {
|
|
width: 100px;
|
|
height: 200px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#wrapper div {
|
|
height: 400px;
|
|
scroll-margin-top: calc(20px);
|
|
}
|
|
</style>
|
|
<div id="wrapper">
|
|
<div id="target"></div>
|
|
</div>
|
|
<script>
|
|
document.getElementById("target").scrollIntoView();
|
|
</script>
|
|
</html>
|