mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-08 22:11:52 +00:00
17 lines
528 B
HTML
17 lines
528 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body onload="loaded()">
|
||
|
<div style="position: relative; top: 100px; overflow: scroll; width: 100px; height: 100px;">
|
||
|
<div style="height: 200px"></div></div>
|
||
|
<div style="position: absolute; top: 100px;" id="abs">abs</div>
|
||
|
<script>
|
||
|
function loaded() {
|
||
|
var insPoint = document.querySelector("div");
|
||
|
insPoint.scrollTop = 50;
|
||
|
var abs = document.getElementById("abs");
|
||
|
abs.style.top = insPoint.offsetTop + "px";
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|