mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-08-15 21:27:35 +00:00
15 lines
353 B
HTML
15 lines
353 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<body>
|
|
<fieldset id="f" style="position:relative; overflow:hidden; width:500px; height:500px;">
|
|
<legend>Legend</legend>
|
|
<div style="height:1000px;">
|
|
<div style="position:absolute; padding:2px; left:20px; top:50px; background:yellow;">Abs-pos</div>
|
|
</div>
|
|
</fieldset>
|
|
<script>
|
|
f.scrollTop = 30;
|
|
</script>
|
|
</body>
|
|
</html>
|