mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
15 lines
255 B
HTML
15 lines
255 B
HTML
<html>
|
|
<head></head>
|
|
|
|
<body>
|
|
|
|
<div style="position: absolute; outline: 1px solid magenta;"><input id="input" type="file"></div>
|
|
|
|
<script>
|
|
document.body.offsetHeight;
|
|
document.getElementById("input").style.position = "absolute";
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|