blob: 9fd97b36880b70c8b0df1771e3e3d5448362fea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html>
<style>
p {
writing-mode:tb;
float:right;
font-size:2000px;
}
#bb {
position:sticky;
display:table-footer-group;
}
#dd {
transition:2s ease-in;
}
</style>
<body>
<div id="dd"></div>
<div id="bb">
<p>grilling it up
</div>
</body>
<script>
document.body.offsetTop;
dd.style.marginTop = "100px";
</script>
</html>
|