blob: 14ca71d0f8fea47eb28bb8b11e2d664ad2cdcdb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html>
<head>
<script>
window.onload = function() {
document.body.offsetWidth;
document.body.style.top = "200px";
};
</script>
</head>
<body><div style="position: relative; top: inherit">This text should be 200px from the top of the body</div></body>
</html>
|