зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
416 B
HTML
12 строки
416 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<div id="scroller" style="overflow:scroll; height: 400px; width: 400px">
|
|
<div style="transform: translateY(10px); margin-top: 90px; background-color: yellow; height: 400px">
|
|
<div style="position: relative; top: 30px; height: 20px; background-color: green"></div>
|
|
</div>
|
|
<div style="height: 400px">spacer</div>
|
|
</div>
|
|
<script>
|
|
document.getElementById('scroller').scrollTop = 120;
|
|
</script>
|